1 22 package org.jboss.resource.adapter.jms; 23 24 import javax.jms.Connection ; 25 import javax.jms.JMSException ; 26 import javax.jms.QueueConnection ; 27 import javax.jms.TemporaryQueue ; 28 import javax.jms.TemporaryTopic ; 29 import javax.jms.TopicConnection ; 30 31 38 public interface JmsSessionFactory 39 extends Connection , TopicConnection , QueueConnection 40 { 41 42 String ISE = "This method is not applicable inside the application server. See the J2EE spec, e.g. J2EE1.4 Section 6.6"; 43 44 49 void addTemporaryQueue(TemporaryQueue temp); 50 51 56 void addTemporaryTopic(TemporaryTopic temp); 57 58 63 void closeSession(JmsSession session) throws JMSException ; 64 } 65 | Popular Tags |