toolbox.jms
Class JmsConstants

Package class diagram package JmsConstants
java.lang.Object
  extended by toolbox.jms.JmsConstants

public final class JmsConstants
extends java.lang.Object

Static final class containing some constants used in the jms package.


Field Summary
static int BYTES_MSG
          Field indicating a bytes message type.
static int DURABLE
          Field indicating that a consumer is durable.
static int MAP_MSG
          Field indicating a map message type.
static int NON_DURABLE
          Field indicating that a consumer is not durable.
static int OBJECT_MSG
          Field indicating a object message type.
static int POINT_TO_POINT
          Field indicating that the JmsObject uses point to point communication.
static int PUBLISH_SUBSCRIBE
          Field indicating that the JmsObject uses publish/subscribe communicatoin.
static int STREAM_MSG
          Field indicating a stream message type.
static int TEXT_MSG
          Field indicating a text message type.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

POINT_TO_POINT

public static final int POINT_TO_POINT
Field indicating that the JmsObject uses point to point communication.

See Also:
Constant Field Values

PUBLISH_SUBSCRIBE

public static final int PUBLISH_SUBSCRIBE
Field indicating that the JmsObject uses publish/subscribe communicatoin.

See Also:
Constant Field Values

DURABLE

public static final int DURABLE
Field indicating that a consumer is durable.

See Also:
Constant Field Values

NON_DURABLE

public static final int NON_DURABLE
Field indicating that a consumer is not durable.

See Also:
Constant Field Values

BYTES_MSG

public static final int BYTES_MSG
Field indicating a bytes message type.

See Also:
Constant Field Values

MAP_MSG

public static final int MAP_MSG
Field indicating a map message type.

See Also:
Constant Field Values

OBJECT_MSG

public static final int OBJECT_MSG
Field indicating a object message type.

See Also:
Constant Field Values

STREAM_MSG

public static final int STREAM_MSG
Field indicating a stream message type.

See Also:
Constant Field Values

TEXT_MSG

public static final int TEXT_MSG
Field indicating a text message type.

See Also:
Constant Field Values