1 package com.mockobjects.jms; 2 3 import javax.jms.*; 4 import com.mockobjects.*; 5 6 public class MockTopicSubscriber extends MockMessageConsumer 7 implements TopicSubscriber{ 8 9 public boolean getNoLocal() throws JMSException{ 10 notImplemented(); 11 return false; 12 } 13 14 public Topic getTopic() throws JMSException{ 15 notImplemented(); 16 return null; 17 } 18 19 } 20 | Popular Tags |