001: package org.mortbay.cometd.jms;
002:
003: import java.util.Enumeration;
004:
005: import javax.jms.Destination;
006: import javax.jms.JMSException;
007:
008: public class CometdMessage implements javax.jms.Message {
009:
010: public void acknowledge() throws JMSException {
011: // TODO Auto-generated method stub
012:
013: }
014:
015: public void clearBody() throws JMSException {
016: // TODO Auto-generated method stub
017:
018: }
019:
020: public void clearProperties() throws JMSException {
021: // TODO Auto-generated method stub
022:
023: }
024:
025: public boolean getBooleanProperty(String name) throws JMSException {
026: // TODO Auto-generated method stub
027: return false;
028: }
029:
030: public byte getByteProperty(String name) throws JMSException {
031: // TODO Auto-generated method stub
032: return 0;
033: }
034:
035: public double getDoubleProperty(String name) throws JMSException {
036: // TODO Auto-generated method stub
037: return 0;
038: }
039:
040: public float getFloatProperty(String name) throws JMSException {
041: // TODO Auto-generated method stub
042: return 0;
043: }
044:
045: public int getIntProperty(String name) throws JMSException {
046: // TODO Auto-generated method stub
047: return 0;
048: }
049:
050: public String getJMSCorrelationID() throws JMSException {
051: // TODO Auto-generated method stub
052: return null;
053: }
054:
055: public byte[] getJMSCorrelationIDAsBytes() throws JMSException {
056: // TODO Auto-generated method stub
057: return null;
058: }
059:
060: public int getJMSDeliveryMode() throws JMSException {
061: // TODO Auto-generated method stub
062: return 0;
063: }
064:
065: public Destination getJMSDestination() throws JMSException {
066: // TODO Auto-generated method stub
067: return null;
068: }
069:
070: public long getJMSExpiration() throws JMSException {
071: // TODO Auto-generated method stub
072: return 0;
073: }
074:
075: public String getJMSMessageID() throws JMSException {
076: // TODO Auto-generated method stub
077: return null;
078: }
079:
080: public int getJMSPriority() throws JMSException {
081: // TODO Auto-generated method stub
082: return 0;
083: }
084:
085: public boolean getJMSRedelivered() throws JMSException {
086: // TODO Auto-generated method stub
087: return false;
088: }
089:
090: public Destination getJMSReplyTo() throws JMSException {
091: // TODO Auto-generated method stub
092: return null;
093: }
094:
095: public long getJMSTimestamp() throws JMSException {
096: // TODO Auto-generated method stub
097: return 0;
098: }
099:
100: public String getJMSType() throws JMSException {
101: // TODO Auto-generated method stub
102: return null;
103: }
104:
105: public long getLongProperty(String name) throws JMSException {
106: // TODO Auto-generated method stub
107: return 0;
108: }
109:
110: public Object getObjectProperty(String name) throws JMSException {
111: // TODO Auto-generated method stub
112: return null;
113: }
114:
115: public Enumeration getPropertyNames() throws JMSException {
116: // TODO Auto-generated method stub
117: return null;
118: }
119:
120: public short getShortProperty(String name) throws JMSException {
121: // TODO Auto-generated method stub
122: return 0;
123: }
124:
125: public String getStringProperty(String name) throws JMSException {
126: // TODO Auto-generated method stub
127: return null;
128: }
129:
130: public boolean propertyExists(String name) throws JMSException {
131: // TODO Auto-generated method stub
132: return false;
133: }
134:
135: public void setBooleanProperty(String name, boolean value)
136: throws JMSException {
137: // TODO Auto-generated method stub
138:
139: }
140:
141: public void setByteProperty(String name, byte value)
142: throws JMSException {
143: // TODO Auto-generated method stub
144:
145: }
146:
147: public void setDoubleProperty(String name, double value)
148: throws JMSException {
149: // TODO Auto-generated method stub
150:
151: }
152:
153: public void setFloatProperty(String name, float value)
154: throws JMSException {
155: // TODO Auto-generated method stub
156:
157: }
158:
159: public void setIntProperty(String name, int value)
160: throws JMSException {
161: // TODO Auto-generated method stub
162:
163: }
164:
165: public void setJMSCorrelationID(String correlationID)
166: throws JMSException {
167: // TODO Auto-generated method stub
168:
169: }
170:
171: public void setJMSCorrelationIDAsBytes(byte[] correlationID)
172: throws JMSException {
173: // TODO Auto-generated method stub
174:
175: }
176:
177: public void setJMSDeliveryMode(int deliveryMode)
178: throws JMSException {
179: // TODO Auto-generated method stub
180:
181: }
182:
183: public void setJMSDestination(Destination destination)
184: throws JMSException {
185: // TODO Auto-generated method stub
186:
187: }
188:
189: public void setJMSExpiration(long expiration) throws JMSException {
190: // TODO Auto-generated method stub
191:
192: }
193:
194: public void setJMSMessageID(String id) throws JMSException {
195: // TODO Auto-generated method stub
196:
197: }
198:
199: public void setJMSPriority(int priority) throws JMSException {
200: // TODO Auto-generated method stub
201:
202: }
203:
204: public void setJMSRedelivered(boolean redelivered)
205: throws JMSException {
206: // TODO Auto-generated method stub
207:
208: }
209:
210: public void setJMSReplyTo(Destination replyTo) throws JMSException {
211: // TODO Auto-generated method stub
212:
213: }
214:
215: public void setJMSTimestamp(long timestamp) throws JMSException {
216: // TODO Auto-generated method stub
217:
218: }
219:
220: public void setJMSType(String type) throws JMSException {
221: // TODO Auto-generated method stub
222:
223: }
224:
225: public void setLongProperty(String name, long value)
226: throws JMSException {
227: // TODO Auto-generated method stub
228:
229: }
230:
231: public void setObjectProperty(String name, Object value)
232: throws JMSException {
233: // TODO Auto-generated method stub
234:
235: }
236:
237: public void setShortProperty(String name, short value)
238: throws JMSException {
239: // TODO Auto-generated method stub
240:
241: }
242:
243: public void setStringProperty(String name, String value)
244: throws JMSException {
245: // TODO Auto-generated method stub
246:
247: }
248:
249: }
|