1 package org.jboss.test.messagedriven.mock; 2 3 import java.util.Properties ; 4 5 import javax.naming.Context ; 6 import javax.naming.NamingException ; 7 8 import org.jboss.jms.jndi.JMSProviderAdapter; 9 import org.w3c.dom.Element ; 10 11 17 public class MockJMSProviderAdapter implements JMSProviderAdapter, JmsMockObject 18 { 19 public String getFactoryRef() 21 { 22 return null; 24 } 25 26 public Context getInitialContext() throws NamingException 27 { 28 return null; 30 } 31 32 public String getName() 33 { 34 return null; 36 } 37 38 public Properties getProperties() 39 { 40 return null; 42 } 43 44 public String getQueueFactoryRef() 45 { 46 return null; 48 } 49 50 public String getTopicFactoryRef() 51 { 52 return null; 54 } 55 56 public void setFactoryRef(String newFactoryRef) 57 { 58 60 } 61 62 public void setName(String name) 63 { 64 66 } 67 68 public void setProperties(Properties properties) 69 { 70 72 } 73 74 public void setQueueFactoryRef(String newQueueFactoryRef) 75 { 76 78 } 79 80 public void setTopicFactoryRef(String newTopicFactoryRef) 81 { 82 84 } 85 86 public void load(String xml) 87 { 88 90 } 91 92 public void load(Element xml) 93 { 94 96 } 97 98 public void load() 99 { 100 102 } 103 104 } 105 | Popular Tags |