User: pra     
  Date: 01/04/26 14:02:14

  Added:       src/main/org/jboss/jms/ra/client JmsConnectionFactory.java
                        JmsSessionFactory.java
  Log:
  Added classes for a JMS connector resource adapter
  
  Revision  Changes    Path
  1.1                  jboss/src/main/org/jboss/jms/ra/client/JmsConnectionFactory.java
  
  Index: JmsConnectionFactory.java
  ===================================================================
  /*
   * Copyright (c) 2001 Peter Antman Tim <[EMAIL PROTECTED]>
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2 of the License, or (at your option) any later version
   * 
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * Lesser General Public License for more details.
   * 
   * You should have received a copy of the GNU Lesser General Public
   * License along with this library; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   */
  package org.jboss.jms.ra.client;
  
  import javax.jms.TopicConnectionFactory;
  import javax.jms.QueueConnectionFactory;
  /**
   * JmsConnectionFactory.java
   *
   *
   * Created: Thu Apr 26 17:01:35 2001
   *
   * @author Peter Antman ([EMAIL PROTECTED])
   * @version $Revision: 1.1 $
   */
  
  public interface JmsConnectionFactory 
      extends TopicConnectionFactory, QueueConnectionFactory
  {
      
  } // JmsConnectionFactory
  
  
  
  1.1                  jboss/src/main/org/jboss/jms/ra/client/JmsSessionFactory.java
  
  Index: JmsSessionFactory.java
  ===================================================================
  /*
   * Copyright (c) 2001 Peter Antman Tim <[EMAIL PROTECTED]>
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2 of the License, or (at your option) any later version
   * 
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * Lesser General Public License for more details.
   * 
   * You should have received a copy of the GNU Lesser General Public
   * License along with this library; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   */
  
  package org.jboss.jms.ra.client;
  
  import javax.jms.TopicConnection;
  import javax.jms.QueueConnection;
  
  /**
   * <p>A marker interface to join topics and queues into one
       factory.
      </p>
   *
   *
   * Created: Thu Mar 29 15:37:21 2001
   *
   * @author Peter Antman ([EMAIL PROTECTED])
   * @version $Revision: 1.1 $
   */
  
  public interface JmsSessionFactory  extends TopicConnection,QueueConnection {
  } // JmsSessionFactory
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to