1 22 package org.jboss.jms.jndi; 23 24 import javax.naming.Context ; 25 import javax.naming.NamingException ; 26 import java.io.Serializable ; 27 import java.util.Properties ; 28 29 37 public interface JMSProviderAdapter extends Serializable 38 { 39 44 Context getInitialContext() throws NamingException ; 45 46 51 void setName(String name); 52 53 58 String getName(); 59 60 65 void setProperties(Properties properties); 66 67 72 Properties getProperties(); 73 74 79 String getFactoryRef(); 80 81 86 String getQueueFactoryRef(); 87 88 93 String getTopicFactoryRef(); 94 95 100 void setFactoryRef(String newFactoryRef); 101 102 107 void setQueueFactoryRef(String newQueueFactoryRef); 108 109 114 void setTopicFactoryRef(String newTopicFactoryRef); 115 } 116 | Popular Tags |