01: package org.mortbay.cometd.jms;
02:
03: import javax.jms.JMSException;
04: import javax.jms.Message;
05: import javax.jms.MessageListener;
06: import javax.jms.Topic;
07:
08: public class CometdConsumer implements javax.jms.TopicSubscriber {
09:
10: public boolean getNoLocal() throws JMSException {
11: // TODO Auto-generated method stub
12: return false;
13: }
14:
15: public Topic getTopic() throws JMSException {
16: // TODO Auto-generated method stub
17: return null;
18: }
19:
20: public void close() throws JMSException {
21: // TODO Auto-generated method stub
22:
23: }
24:
25: public MessageListener getMessageListener() throws JMSException {
26: // TODO Auto-generated method stub
27: return null;
28: }
29:
30: public String getMessageSelector() throws JMSException {
31: // TODO Auto-generated method stub
32: return null;
33: }
34:
35: public Message receive() throws JMSException {
36: // TODO Auto-generated method stub
37: return null;
38: }
39:
40: public Message receive(long arg0) throws JMSException {
41: // TODO Auto-generated method stub
42: return null;
43: }
44:
45: public Message receiveNoWait() throws JMSException {
46: // TODO Auto-generated method stub
47: return null;
48: }
49:
50: public void setMessageListener(MessageListener arg0)
51: throws JMSException {
52: // TODO Auto-generated method stub
53:
54: }
55:
56: }
|