001: package org.mortbay.cometd.jms;
002:
003: import javax.jms.Destination;
004: import javax.jms.JMSException;
005: import javax.jms.Message;
006: import javax.jms.Topic;
007:
008: public class CometdProducer implements javax.jms.TopicPublisher {
009: public Topic getTopic() throws JMSException {
010: // TODO Auto-generated method stub
011: return null;
012: }
013:
014: public void publish(Message message) throws JMSException {
015: // TODO Auto-generated method stub
016:
017: }
018:
019: public void publish(Topic topic, Message message)
020: throws JMSException {
021: // TODO Auto-generated method stub
022:
023: }
024:
025: public void publish(Message message, int deliveryMode,
026: int priority, long timeToLive) throws JMSException {
027: // TODO Auto-generated method stub
028:
029: }
030:
031: public void publish(Topic topic, Message message, int deliveryMode,
032: int priority, long timeToLive) throws JMSException {
033: // TODO Auto-generated method stub
034:
035: }
036:
037: public void close() throws JMSException {
038: // TODO Auto-generated method stub
039:
040: }
041:
042: public int getDeliveryMode() throws JMSException {
043: // TODO Auto-generated method stub
044: return 0;
045: }
046:
047: public Destination getDestination() throws JMSException {
048: // TODO Auto-generated method stub
049: return null;
050: }
051:
052: public boolean getDisableMessageID() throws JMSException {
053: // TODO Auto-generated method stub
054: return false;
055: }
056:
057: public boolean getDisableMessageTimestamp() throws JMSException {
058: // TODO Auto-generated method stub
059: return false;
060: }
061:
062: public int getPriority() throws JMSException {
063: // TODO Auto-generated method stub
064: return 0;
065: }
066:
067: public long getTimeToLive() throws JMSException {
068: // TODO Auto-generated method stub
069: return 0;
070: }
071:
072: public void send(Message message) throws JMSException {
073: // TODO Auto-generated method stub
074:
075: }
076:
077: public void send(Destination destination, Message message)
078: throws JMSException {
079: // TODO Auto-generated method stub
080:
081: }
082:
083: public void send(Message message, int deliveryMode, int priority,
084: long timeToLive) throws JMSException {
085: // TODO Auto-generated method stub
086:
087: }
088:
089: public void send(Destination destination, Message message,
090: int deliveryMode, int priority, long timeToLive)
091: throws JMSException {
092: // TODO Auto-generated method stub
093:
094: }
095:
096: public void setDeliveryMode(int deliveryMode) throws JMSException {
097: // TODO Auto-generated method stub
098:
099: }
100:
101: public void setDisableMessageID(boolean value) throws JMSException {
102: // TODO Auto-generated method stub
103:
104: }
105:
106: public void setDisableMessageTimestamp(boolean value)
107: throws JMSException {
108: // TODO Auto-generated method stub
109:
110: }
111:
112: public void setPriority(int defaultPriority) throws JMSException {
113: // TODO Auto-generated method stub
114:
115: }
116:
117: public void setTimeToLive(long timeToLive) throws JMSException {
118: // TODO Auto-generated method stub
119:
120: }
121:
122: }
|