1 /**
2 *
3 * Copyright 2003-2004 The Apache Software Foundation
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18
19
20
21
22
23
24 package javax.jms;
25
26 /**
27 * @version $Rev: 46019 $ $Date: 2004-09-14 02:56:06 -0700 (Tue, 14 Sep 2004) $
28 */
29 public interface BytesMessage extends Message {
30 long getBodyLength() throws JMSException;
31
32 boolean readBoolean() throws JMSException;
33
34 byte readByte() throws JMSException;
35
36 int readUnsignedByte() throws JMSException;
37
38 short readShort() throws JMSException;
39
40 int readUnsignedShort() throws JMSException;
41
42 char readChar() throws JMSException;
43
44 int readInt() throws JMSException;
45
46 long readLong() throws JMSException;
47
48 float readFloat() throws JMSException;
49
50 double readDouble() throws JMSException;
51
52 String readUTF() throws JMSException;
53
54 int readBytes(byte[] value) throws JMSException;
55
56 int readBytes(byte[] value, int length) throws JMSException;
57
58 void writeBoolean(boolean value) throws JMSException;
59
60 void writeByte(byte value) throws JMSException;
61
62 void writeShort(short value) throws JMSException;
63
64 void writeChar(char value) throws JMSException;
65
66 void writeInt(int value) throws JMSException;
67
68 void writeLong(long value) throws JMSException;
69
70 void writeFloat(float value) throws JMSException;
71
72 void writeDouble(double value) throws JMSException;
73
74 void writeUTF(String value) throws JMSException;
75
76 void writeBytes(byte[] value) throws JMSException;
77
78 void writeBytes(byte[] value, int offset, int length) throws JMSException;
79
80 void writeObject(Object value) throws JMSException;
81
82 void reset() throws JMSException;
83 }