Websphere MQ Everyplace

com.ibm.mqe.jms
Interface MQeJMSMsgFieldNames

All Known Implementing Classes:
MQeJMSRFHTransformer

public interface MQeJMSMsgFieldNames

This interface defines a number of String constants that are used to name fields when a JMS message is mapped to an MQeMsgObject. These are provided to enable WebSphere MQ Everyplace applications to interpret messages sent by JMS or to construct messages that a JMS application will understand.

The use of these fields is described in detail in Chapter 10 of the WebSphere MQ Everyplace Application Programming Guide.


Field Summary
static java.lang.String MQe_JMS_BODY
          The name of a field containing the body of the JMS message.
static java.lang.String MQe_JMS_CLASS
          The name of a field describing the type of JMS message contained within the MQeMsgObject.
static java.lang.String MQe_JMS_CORRELATIONID
          The name of a field containing the JMS CorrelationID.
static java.lang.String MQe_JMS_DELIVERYMODE
          The name of a field containing the JMS Delivery Mode.
static java.lang.String MQe_JMS_DESTINATION
          The name of a field containing the JMS Destination.
static java.lang.String MQe_JMS_EXPIRATION
          The name of a field containing the JMS Expiration.
static java.lang.String MQe_JMS_HEADER
          The name of a field containing JMS message header fields that cannot be mapped directly to an MQeMsgObject.
static java.lang.String MQe_JMS_MESSAGEID
          The name of a field containing the JMS MessageID.
static java.lang.String MQe_JMS_PRIORITY
          The name of a field containing the JMS Priority.
static java.lang.String MQe_JMS_PROPERTIES
          The name of a field containing any JMS application-specific properties contained in the message.
static java.lang.String MQe_JMS_PS_PROPERTIES
          The name of a field containing any JMS provider-specific properties contained in the message.
static java.lang.String MQe_JMS_REDELIVERED
          The name of a field containing the JMS Redelivered flag.
static java.lang.String MQe_JMS_REPLYTO
          The name of a field containing the JMS Reply To destination.
static java.lang.String MQe_JMS_TIMESTAMP
          The name of a field containing JMS Timestamp.
static java.lang.String MQe_JMS_TYPE
          The name of a field containing the JMS Type.
static java.lang.String MQe_JMSX_PROPERTIES
          The name of a field containing any JMS defined properties contained in the message.
 

Field Detail

MQe_JMS_CLASS

public static final java.lang.String MQe_JMS_CLASS
The name of a field describing the type of JMS message contained within the MQeMsgObject.

See Also:
Constant Field Values

MQe_JMS_BODY

public static final java.lang.String MQe_JMS_BODY
The name of a field containing the body of the JMS message. The message body is stored as a byte[].

See Also:
Constant Field Values

MQe_JMS_HEADER

public static final java.lang.String MQe_JMS_HEADER
The name of a field containing JMS message header fields that cannot be mapped directly to an MQeMsgObject.

See Also:
Constant Field Values

MQe_JMS_PROPERTIES

public static final java.lang.String MQe_JMS_PROPERTIES
The name of a field containing any JMS application-specific properties contained in the message.

See Also:
Constant Field Values

MQe_JMS_PS_PROPERTIES

public static final java.lang.String MQe_JMS_PS_PROPERTIES
The name of a field containing any JMS provider-specific properties contained in the message.

See Also:
Constant Field Values

MQe_JMSX_PROPERTIES

public static final java.lang.String MQe_JMSX_PROPERTIES
The name of a field containing any JMS defined properties contained in the message.

See Also:
Constant Field Values

MQe_JMS_DESTINATION

public static final java.lang.String MQe_JMS_DESTINATION
The name of a field containing the JMS Destination. This field is described in Section 3.4.1 of the JMS specification.

See Also:
Constant Field Values

MQe_JMS_DELIVERYMODE

public static final java.lang.String MQe_JMS_DELIVERYMODE
The name of a field containing the JMS Delivery Mode. This field is described in Section 3.4.2 of the JMS specification.

See Also:
Constant Field Values

MQe_JMS_MESSAGEID

public static final java.lang.String MQe_JMS_MESSAGEID
The name of a field containing the JMS MessageID. This field is described in Section 3.4.3 of the JMS specification.

See Also:
Constant Field Values

MQe_JMS_TIMESTAMP

public static final java.lang.String MQe_JMS_TIMESTAMP
The name of a field containing JMS Timestamp. This field is described in Section 3.4.4 of the JMS specification.

See Also:
Constant Field Values

MQe_JMS_CORRELATIONID

public static final java.lang.String MQe_JMS_CORRELATIONID
The name of a field containing the JMS CorrelationID. This field is described in Section 3.4.5 of the JMS specification.

See Also:
Constant Field Values

MQe_JMS_REPLYTO

public static final java.lang.String MQe_JMS_REPLYTO
The name of a field containing the JMS Reply To destination. This field is described in Section 3.4.6 of the JMS specification.

See Also:
Constant Field Values

MQe_JMS_REDELIVERED

public static final java.lang.String MQe_JMS_REDELIVERED
The name of a field containing the JMS Redelivered flag. This field is described in Section 3.4.7 of the JMS specification.

See Also:
Constant Field Values

MQe_JMS_TYPE

public static final java.lang.String MQe_JMS_TYPE
The name of a field containing the JMS Type. This field is described in Section 3.4.8 of the JMS specification.

See Also:
Constant Field Values

MQe_JMS_EXPIRATION

public static final java.lang.String MQe_JMS_EXPIRATION
The name of a field containing the JMS Expiration. This field is described in Section 3.4.9 of the JMS specification.

See Also:
Constant Field Values

MQe_JMS_PRIORITY

public static final java.lang.String MQe_JMS_PRIORITY
The name of a field containing the JMS Priority. This field is described in Section 3.4.10 of the JMS specification.

See Also:
Constant Field Values

Websphere MQ Everyplace