[jboss-cvs] jboss-jms/src/main/org/jboss/jms/server/plugin/contract ...

Timothy Fox tim.fox at jboss.com
Thu Jul 27 15:01:55 EDT 2006


  User: timfox  
  Date: 06/07/27 15:01:55

  Modified:    src/main/org/jboss/jms/server/plugin/contract 
                        ChannelMapper.java
  Log:
  Mainly http://jira.jboss.com/jira/browse/JBMESSAGING-434 plus a few other bits and pieces
  
  Revision  Changes    Path
  1.13      +21 -8     jboss-jms/src/main/org/jboss/jms/server/plugin/contract/ChannelMapper.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChannelMapper.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-jms/src/main/org/jboss/jms/server/plugin/contract/ChannelMapper.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -b -r1.12 -r1.13
  --- ChannelMapper.java	17 Jul 2006 17:14:46 -0000	1.12
  +++ ChannelMapper.java	27 Jul 2006 19:01:55 -0000	1.13
  @@ -38,9 +38,9 @@
       * @return
       * @throws JMSException
       */
  -   String getPreConfiguredClientID(String username) throws JMSException;
  +   String getPreConfiguredClientID(String username) throws Exception;
            
  -   CoreDestination getCoreDestination(JBossDestination jbDest) throws JMSException;
  +   CoreDestination getCoreDestination(JBossDestination jbDest) throws Exception;
      
      JBossDestination getJBossDestination(long coreDestinationID);
         
  @@ -51,10 +51,23 @@
                                 MemoryManager mm,                              
                                 int fullSize, 
                                 int pageSize, 
  -                              int downCacheSize) throws JMSException;
  +                              int downCacheSize) throws Exception;
   
      CoreDestination undeployCoreDestination(boolean isQueue, String destName)
  -      throws JMSException;
  +      throws Exception;
  +   
  +   void deployTemporaryCoreDestination(boolean isQueue, 
  +                                       String destName, 
  +                                       long id,
  +                                       MessageStore ms, 
  +                                       PersistenceManager pm,
  +                                       MemoryManager mm,                              
  +                                       int fullSize, 
  +                                       int pageSize, 
  +                                       int downCacheSize) throws Exception;
  +
  +   CoreDestination undeployTemporaryCoreDestination(boolean isQueue, String destName)
  +      throws Exception;
      
      DurableSubscription createDurableSubscription(String topicName,
                                                     String clientID,
  @@ -63,22 +76,22 @@
                                                     boolean noLocal,
                                                     MessageStore ms,
                                                     PersistenceManager pm,
  -                                                  MemoryManager mm) throws JMSException;
  +                                                  MemoryManager mm) throws Exception;
      
      Subscription createSubscription(String topicName,
                                      String selector,
                                      boolean noLocal,
                                      MessageStore ms,
                                      PersistenceManager pm,
  -                                   MemoryManager mm) throws JMSException;
  +                                   MemoryManager mm) throws Exception;
      
      DurableSubscription getDurableSubscription(String clientID,
                                                 String subscriptionName,
                                                 MessageStore ms,
                                                 PersistenceManager pm,
  -                                              MemoryManager mm) throws JMSException;
  +                                              MemoryManager mm) throws Exception;
   
  -   boolean removeDurableSubscription(String clientID, String subscriptionName) throws JMSException;
  +   boolean removeDurableSubscription(String clientID, String subscriptionName) throws Exception;
   
      Set getSubscriptions(String clientID);
      
  
  
  



More information about the jboss-cvs-commits mailing list