1 7 package org.jboss.jms.serverless; 8 9 import org.jboss.logging.Logger; 10 import javax.jms.Topic ; 11 import javax.jms.TopicPublisher ; 12 import javax.jms.JMSException ; 13 import javax.jms.Destination ; 14 import javax.jms.Message ; 15 16 22 class TopicPublisherImpl extends MessageProducerImpl implements TopicPublisher { 23 24 private static final Logger log = Logger.getLogger(TopicPublisherImpl.class); 25 26 TopicPublisherImpl(SessionImpl session, Topic topic) { 27 super(session, topic); 28 29 } 31 32 36 public Topic getTopic() throws JMSException { 37 throw new NotImplementedException(); 38 } 39 40 public void publish(Message message) throws JMSException { 41 throw new NotImplementedException(); 42 } 43 44 public void publish(Message message, int deliveryMode, int priority, long timeToLive) 45 throws JMSException { 46 throw new NotImplementedException(); 47 } 48 49 public void publish(Topic topic, Message message) throws JMSException { 50 throw new NotImplementedException(); 51 } 52 53 public void publish(Topic topic, 54 Message message, 55 int deliveryMode, 56 int priority, 57 long timeToLive) throws JMSException { 58 throw new NotImplementedException(); 59 } 60 61 } 62 | Popular Tags |