User: norbert 
  Date: 00/06/18 21:23:14

  Modified:    src/java/org/spydermq/distributed/interfaces
                        DistributedJMSServer.java
  Added:       src/java/org/spydermq/distributed/interfaces
                        DistributedJMSServerSetup.java
  Log:
  More work for the OIL
  
  Revision  Changes    Path
  1.2       +4 -3      
spyderMQ/src/java/org/spydermq/distributed/interfaces/DistributedJMSServer.java
  
  Index: DistributedJMSServer.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/spyderMQ/src/java/org/spydermq/distributed/interfaces/DistributedJMSServer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DistributedJMSServer.java 2000/05/31 18:10:15     1.1
  +++ DistributedJMSServer.java 2000/06/19 04:23:13     1.2
  @@ -22,7 +22,7 @@
    *      
    *   @author Norbert Lataille ([EMAIL PROTECTED])
    * 
  - *   @version $Revision: 1.1 $
  + *   @version $Revision: 1.2 $
    */
   public interface DistributedJMSServer
   { 
  @@ -37,9 +37,10 @@
        public TemporaryTopic getTemporaryTopic(SpyDistributedConnection dc) throws 
Exception;
        public TemporaryQueue getTemporaryQueue(SpyDistributedConnection dc) throws 
Exception;
        public void deleteTemporaryDestination(SpyDestination dest) throws Exception;
  -     public void connectionClosing(SpyDistributedConnection dc) throws Exception;   
 
  -     public void setServer(JMSServer s) throws Exception; 
  +     public void connectionClosing(SpyDistributedConnection dc) throws Exception;   
         
        public void checkID(String ID) throws Exception;
        public SpyMessage queueReceiveNoWait(Queue queue) throws Exception;
        public void connectionListening(boolean mode,Destination 
dest,SpyDistributedConnection dc) throws Exception;
  +     
  +     public void setServer(JMSServer s) throws Exception; 
   }
  
  
  
  1.1                  
spyderMQ/src/java/org/spydermq/distributed/interfaces/DistributedJMSServerSetup.java
  
  Index: DistributedJMSServerSetup.java
  ===================================================================
  package org.spydermq.distributed.interfaces;
  
  import org.spydermq.JMSServer;
  
  public interface DistributedJMSServerSetup
  {
        public DistributedJMSServer createClient() throws Exception;
        public void setServer(JMSServer s);
  }
  
  
  

Reply via email to