com.ibm.msg.client.jms

Interface JmsConstants

  • All Known Subinterfaces:
    CommonConstants, WMQConstants


    public interface JmsConstants
    These constants refer to property names and values which can be set via the client. The constants listed here are all JMS-specific constants, and apply to any provider. Constants that are specific to a given provider (such as WebSphere MQ) can be found in the provider JavaDoc, typically at com.ibm.msg.client..Constants. For example, WebSphere MQ provider constants can be found at com.ibm.msg.client.wmq.WMQConstants. Constants are set using setProperty(, ) and getProperty(); For example, if you are setting an integer property value on a Connection Factory, use: JmsConnectionFactory.setIntProperty(, ); If you want to get a boolean property value from a Destination, use: JmsDestination.getBooleanProperty();
    • Field Detail

      • PROVIDER_VRMF

        static final java.lang.String PROVIDER_VRMF
        PROVIDER_VRMF property name. This key is used to specify a specific version of a provider component required. A value of -1 can be used to indicate you are not interested in matching that part of the version information. e.g.
         int[] version = {6, 4, -1, -1};
         Hashmap filter = new HashMap();
         filter.put(JmsConstants.PROVIDER_VRMF, version);
         
        In this case a provider of version 6 4 0 0 or 6 4 1 3 would be suitable for return. However, a provider of version 6 3 4 5 would not be suitable. If no version is specified in the filter and a provider has two components available that both provide the same interface, then the newest of the two will be chosen. Used when calling JmsFactoryFactory.getInstance(...)
        See Also:
        Constant Field Values
      • WMQ_PROVIDER

        static final java.lang.String WMQ_PROVIDER
        The WebSphere MQ provider type. This is used to request the WebSphere MQ provider when calling JmsFactoryFactory.getInstance(...) The provider implementation must exist on the classpath for this call to be successful.
        See Also:
        Constant Field Values
      • MQLIGHT_BLUEMIX_PROVIDER

        static final java.lang.String MQLIGHT_BLUEMIX_PROVIDER
        First pass for MQLight provider Will need to get the final name approved
        See Also:
        Constant Field Values
      • CT_WMQ

        static final int CT_WMQ
        CONNECTION_TYPE property value: WMQ Indicates that the provider is WebSphere MQ. Set using setIntProperty(JmsConstants.CONNECTION_TYPE, JmsConstants.CT_WMQ); Get using getIntProperty(JmsConstants.CONNECTION_TYPE); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • ADMIN_OBJECT_TYPE

        static final java.lang.String ADMIN_OBJECT_TYPE
        ADMIN_OBJECT_TYPE property name. This property can be used to programmatically determine the type of the object independent from the class name. Using bit flags to indicate the type of administered object, and what type of domain is is used for. The XA nature can also be indicated as well. Can be used on any administered object with getShortProperty(JmsConstants.ADMIN_OBJECT_TYPE);
        See Also:
        Constant Field Values
      • ADMIN_CONNECTION_FACTORY

        static final short ADMIN_CONNECTION_FACTORY
        ADMIN_OBJECT_TYPE property value: connection factory object. Indicates that the administered object is a Connection Factory.
        See Also:
        Constant Field Values
      • ADMIN_DESTINATION

        static final short ADMIN_DESTINATION
        ADMIN_OBJECT_TYPE property value: destination object. Indicates that the administered object is a Destination.
        See Also:
        Constant Field Values
      • ADMIN_XA

        static final short ADMIN_XA
        ADMIN_OBJECT_TYPE property value: xa supported. Indicates that the administered object supports transactions.
        See Also:
        Constant Field Values
      • ADMIN_TEMPORARY

        static final short ADMIN_TEMPORARY
        ADMIN_OBJECT_TYPE property value: temporary destination. Indicates that the administered object is a temporary destination.
        See Also:
        Constant Field Values
      • ADMIN_RRS

        static final short ADMIN_RRS
        ADMIN_OBJECT_TYPE property value: RRS supported. Indicates that the administered object supports RRS.
        See Also:
        Constant Field Values
      • ADMIN_QUEUE_DOMAIN

        static final short ADMIN_QUEUE_DOMAIN
        ADMIN_OBJECT_TYPE property value: queue domain. Indicates that the administered object is a Queue.
        See Also:
        Constant Field Values
      • ADMIN_TOPIC_DOMAIN

        static final short ADMIN_TOPIC_DOMAIN
        ADMIN_OBJECT_TYPE property value: topic domain. Indicates that the administered object is a Topic.
        See Also:
        Constant Field Values
      • ADMIN_CROSS_DOMAIN

        static final short ADMIN_CROSS_DOMAIN
        ADMIN_OBJECT_TYPE property value: cross domain. Indicates that the administered object is a cross-domain (i.e. JMS 1.1-style) object.
        See Also:
        Constant Field Values
      • ASYNC_EXCEPTIONS

        static final java.lang.String ASYNC_EXCEPTIONS
        ASYNC_EXCEPTIONS property name. Sets the exception types that should be passed to the user's exception listener. Set using setIntProperty(JmsConstants.ASYNC_EXCEPTIONS, ); Get using getIntProperty(JmsConstants.ASYNC_EXCEPTIONS); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • ASYNC_EXCEPTIONS_ALL

        static final int ASYNC_EXCEPTIONS_ALL
        ASYNC_EXCEPTIONS property value: All. All exceptions will be passed to the user's exception listener. Set using setIntProperty(JmsConstants.ASYNC_EXCEPTIONS, ASYNC_EXCEPTIONS_ALL); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • ASYNC_EXCEPTIONS_CONNECTIONBROKEN

        static final int ASYNC_EXCEPTIONS_CONNECTIONBROKEN
        ASYNC_EXCEPTIONS property value: Connection broken. Only connection broken exceptions will be passed to the user's exception listener. Set using setIntProperty(JmsConstants.ASYNC_EXCEPTIONS, ASYNC_EXCEPTIONS_CONNECTIONBROKEN); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • ASYNC_EXCEPTIONS_DEFAULT

        static final int ASYNC_EXCEPTIONS_DEFAULT
        ASYNC_EXCEPTIONS property value: the default value. Set using setIntProperty(JmsConstants.ASYNC_EXCEPTIONS, ASYNC_EXCEPTIONS_DEFAULT); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • CAPABILITY_TRANSACTIONS_XA

        static final java.lang.String CAPABILITY_TRANSACTIONS_XA
        CAPABILITY_TRANSACTIONS_XA property name. Boolean property representing whether the provider supports XA. Get using getBooleanProperty(JmsConstants.CAPABILITY_TRANSACTIONS_XA);
        See Also:
        Constant Field Values
      • CAPABILITY_TRANSACTIONS_LOCAL

        static final java.lang.String CAPABILITY_TRANSACTIONS_LOCAL
        CAPABILITY_TRANSACTIONS_LOCAL property name. Boolean property representing whether the provider supports locally transacted sessions. Get using getBooleanProperty(JmsConstants.CAPABILITY_TRANSACTIONS_LOCAL);
        See Also:
        Constant Field Values
      • CAPABILITY_ASF

        static final java.lang.String CAPABILITY_ASF
        CAPABILITY_ASF property name. Boolean property representing whether the provider supports ASF. Get using getBooleanProperty(JmsConstants.CAPABILITY_ASF);
        See Also:
        Constant Field Values
      • CAPABILITY_POINT_TO_POINT

        static final java.lang.String CAPABILITY_POINT_TO_POINT
        CAPABILITY_POINT_TO_POINT property name. Boolean property representing whether the provider supports point-to-point messaging. Get using getBooleanProperty(JmsConstants.CAPABILITY_POINT_TO_POINT);
        See Also:
        Constant Field Values
      • CAPABILITY_PUBLISH_SUBSCRIBE

        static final java.lang.String CAPABILITY_PUBLISH_SUBSCRIBE
        CAPABILITY_PUBLISH_SUBSCRIBE property name. Boolean property representing whether the provider supports publish-subscribe messaging. Get using getBooleanProperty(JmsConstants.CAPABILITY_PUBLISH_SUBSCRIBE);
        See Also:
        Constant Field Values
      • CAPABILITY_USERNAME_PASSWORD

        static final java.lang.String CAPABILITY_USERNAME_PASSWORD
        CAPABILITY_USERNAME_PASSWORD property name. Boolean property representing whether the provider supports security via a username and password combination. Get using getBooleanProperty(JmsConstants.CAPABILITY_USERNAME_PASSWORD);
        See Also:
        Constant Field Values
      • CONNECTION_TYPE_NAME

        static final java.lang.String CONNECTION_TYPE_NAME
        CONNECTION_TYPE_NAME property name. String property representing the provider type currently in use by the Connection Factory. Get using getStringProperty(JmsConstants.CONNECTION_TYPE_NAME); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • USERID

        static final java.lang.String USERID
        USERID property name. The username that the Connection Factory will use when creating a connection. Set using setStringProperty(JmsConstants.USERID, ); Get using getStringProperty(JmsConstants.USERID); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • PASSWORD

        static final java.lang.String PASSWORD
        PASSWORD property name. The password that the Connection Factory will use when creating a connection. Set using setStringProperty(JmsConstants.PASSWORD, ); Get using getStringProperty(JmsConstants.PASSWORD); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • USER_AUTHENTICATION_MQCSP

        static final java.lang.String USER_AUTHENTICATION_MQCSP
        USER_AUTHENTICATION_MQCSP property name. Enable the MQCSP authentication mode that the Connection Factory will use when creating a connection. Set using setBooleanProperty(JmsConstants.USER_AUTHENTICATION_MQCSP, ); Get using getBooleanProperty(JmsConstants.USER_AUTHENTICATION_MQCSP); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • CLIENT_ID

        static final java.lang.String CLIENT_ID
        CLIENT_ID property name. The client id used for all connections created from the Connection Factory Set using setStringProperty(JmsConstants.CLIENT_ID, ); Get using getStringProperty(JmsConstants.CLIENT_ID); Valid for a Connection Factory.
        See Also:
        Constant Field Values
      • PROVIDER_NAME

        static final java.lang.String PROVIDER_NAME
        PROVIDER_NAME property name. The provider name that will be used to retrieve the provider metadata. Set using setStringProperty(JmsConstants.PROVIDER_NAME, ); Get using getStringProperty(JmsConstants.PROVIDER_NAME); Valid on a ConnectionMetaData object
        See Also:
        Constant Field Values
      • DELIVERY_DELAY

        static final java.lang.String DELIVERY_DELAY
        DELIVERY_DELAY property name MessageProducer (& JMSProducer) constant Sets or gets the default delivery delay time for all messages created by the message producer. Set using setLongProperty(JmsConstants.DELIVERY_DELAY, ); Get using getLongProperty(JmsConstants.DELIVERY_DELAY); Valid on a MessageProducer (or JMSProducer) object.
        See Also:
        Constant Field Values
      • TIME_TO_LIVE

        static final java.lang.String TIME_TO_LIVE
        TIME_TO_LIVE property name. MessageProducer and Destination constant. Sets or gets the default time to live for all messages created by the message producer (or, if set on a Destination object, for all message producers created under that Destination). Set using setLongProperty(JmsConstants.TIME_TO_LIVE, ); Get using getLongProperty(JmsConstants.TIME_TO_LIVE); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • DELIVERY_MODE

        static final java.lang.String DELIVERY_MODE
        DELIVERY_MODE property name. MessageProducer and Destination constant. Sets or gets the default delivery mode for all messages created by the message producer (or, if set on a Destination object, for all message producers created under that Destination). Set using setIntProperty(JmsConstants.DELIVERY_MODE, ); Get using getIntProperty(JmsConstants.DELIVERY_MODE); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • PRIORITY

        static final java.lang.String PRIORITY
        PRIORITY property name. MessageProducer and Destination constant. Sets or gets the default priority for all messages created by the message producer (or, if set on a Destination object, for all message producers created under that Destination). Set using setIntProperty(JmsConstants.PRIORITY, ); Get using getIntProperty(JmsConstants.PRIORITY); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • DESTINATION_NAME

        static final java.lang.String DESTINATION_NAME
        DESTINATION_NAME property name. Destination constant. Name for the destination - this is the base destination name, without the prefix determined by the object type name (i.e. topic:// or queue://), and without the properties that are in the general property context. Set using setStringProperty(JmsConstants.DESTINATION_NAME, ); Get using getStringProperty(JmsConstants.DESTINATION_NAME); Valid on a Destination object.
        See Also:
        Constant Field Values
      • SELECTOR_STRING

        static final java.lang.String SELECTOR_STRING
        SELECTOR_STING property name. Selector string that is in use
        See Also:
        Constant Field Values
      • DISABLE_MSG_ID

        static final java.lang.String DISABLE_MSG_ID
        DISABLE_MSG_ID property name. Disable the message ID in the message producer. Set using setBooleanProperty(JmsConstants.DISABLE_MSG_ID, ); Get using getBooleanProperty(JmsConstants.DISABLE_MSG_ID); Valid on a MessageProducer object.
        See Also:
        Constant Field Values
      • DISABLE_MSG_TS

        static final java.lang.String DISABLE_MSG_TS
        DISABLE_MSG_TS property name. Disable the message timestamp in the message producer. Set using setBooleanProperty(JmsConstants.DISABLE_MSG_TS, ); Get using getBooleanProperty(JmsConstants.DISABLE_MSG_TS); Valid on a MessageProducer object.
        See Also:
        Constant Field Values
      • NOLOCAL

        static final java.lang.String NOLOCAL
        NOLOCAL property name. Set or get whether messages published by the owning connection are received by this message consumer. Set using setBooleanProperty(JmsConstants.NOLOCAL, ); Get using getBooleanProperty(JmsConstants.NOLOCAL); Valid on a MessageConsumer object.
        See Also:
        Constant Field Values
      • JMS_DESTINATION

        static final java.lang.String JMS_DESTINATION
        NOLOCAL property name. Sets or gets the JMS Destination on a message. The value passed in must be a Destination object. Set using setObjectProperty(JmsConstants.JMS_DESTINATION, ); Get using getObjectProperty(JmsConstants.JMS_DESTINATION); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_DELIVERY_MODE

        static final java.lang.String JMS_DELIVERY_MODE
        JMS_DELIVERY_MODE property name. Sets or gets the JMS Delivery Mode on a message. Set using setIntProperty(JmsConstants.JMS_DELIVERY_MODE, ); Get using getIntProperty(JmsConstants.JMS_DELIVERY_MODE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_EXPIRATION

        static final java.lang.String JMS_EXPIRATION
        JMS_EXPIRATION property name. Sets or gets the JMS Expiration on a message. Set using setLongProperty(JmsConstants.JMS_EXPIRATION, ); Get using getLongProperty(JmsConstants.JMS_EXPIRATION); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_PRIORITY

        static final java.lang.String JMS_PRIORITY
        JMS_PRIORITY property name. Sets or gets the JMS Priority on a message. Set using setIntProperty(JmsConstants.JMS_PRIORITY, ); Get using getIntProperty(JmsConstants.JMS_PRIORITY); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_MESSAGEID

        static final java.lang.String JMS_MESSAGEID
        JMS_MESSAGEID property name. Sets or gets the JMS Message ID on a message. Set using setStringProperty(JmsConstants.JMS_MESSAGEID, ); Get using getStringProperty(JmsConstants.JMS_MESSAGEID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_TIMESTAMP

        static final java.lang.String JMS_TIMESTAMP
        JMS_TIMESTAMP property name. Sets or gets the JMS Timestamp on a message. Set using setLongProperty(JmsConstants.JMS_TIMESTAMP, ); Get using getLongProperty(JmsConstants.JMS_TIMESTAMP); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_CORRELATIONID

        static final java.lang.String JMS_CORRELATIONID
        JMS_CORRELATIONID property name. Sets or gets the JMS Correlation ID on a message. Set using setStringProperty(JmsConstants.JMS_CORRELATIONID, ); Get using getStringProperty(JmsConstants.JMS_CORRELATIONID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_REPLYTO

        static final java.lang.String JMS_REPLYTO
        JMS_REPLYTO property name. Sets or gets the JMS Reply To destination on a message. The value passed in must be a Destination object. Set using setObjectProperty(JmsConstants.JMS_REPLYTO, ); Get using getObjectProperty(JmsConstants.JMS_REPLYTO); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_TYPE

        static final java.lang.String JMS_TYPE
        JMS_TYPE property name. Sets or gets the JMS Type of a message. Set using setStringProperty(JmsConstants.JMS_TYPE, ); Get using getStringProperty(JmsConstants.JMS_TYPE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_REDELIVERED

        static final java.lang.String JMS_REDELIVERED
        JMS_REDELIVERED property name. Determines whether the message has been re-delivered. Get using getBooleanProperty(JmsConstants.JMS_TYPE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMSX_USERID

        static final java.lang.String JMSX_USERID
        JMSX_USERID property name. Sets or gets the JMS User ID on a message. Set using setStringProperty(JmsConstants.JMSX_USERID, ); Get using getStringProperty(JmsConstants.JMSX_USERID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMSX_APPID

        static final java.lang.String JMSX_APPID
        JMSX_APPID property name. Sets or gets the JMS Application ID on a message. Set using setStringProperty(JmsConstants.JMSX_APPID, ); Get using getStringProperty(JmsConstants.JMSX_APPID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMSX_DELIVERY_COUNT

        static final java.lang.String JMSX_DELIVERY_COUNT
        JMSX_DELIVERY_COUNT property name. Gets the number of times the message has been delivered without being successfully acknowledged. Get using getIntProperty(JmsConstants.JMSX_DELIVERY_COUNT); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMSX_GROUPID

        static final java.lang.String JMSX_GROUPID
        JMSX_GROUPID property name. Sets or gets the JMS Group ID on a message. Set using setStringProperty(JmsConstants.JMSX_GROUPID, ); Get using getStringProperty(JmsConstants.JMSX_GROUPID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMSX_GROUPSEQ

        static final java.lang.String JMSX_GROUPSEQ
        JMSX_GROUPSEQ property name. Sets or gets the JMS Group Sequence on a message. Set using setStringProperty(JmsConstants.JMSX_GROUPSEQ, ); Get using getStringProperty(JmsConstants.JMSX_GROUPSEQ); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMSX_STATE

        static final java.lang.String JMSX_STATE
        JMSX_STATE property name. Sets or gets the JMS state of a message. Set using setStringProperty(JmsConstants.JMSX_STATE, ); Get using getStringProperty(JmsConstants.JMSX_STATE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMSX_PRODUCER_TXID

        static final java.lang.String JMSX_PRODUCER_TXID
        JMSX_PRODUCER_TXID property name. Sets or gets the JMS producer's transmission ID of a message. Set using setStringProperty(JmsConstants.JMSX_PRODUCER_TXID, ); Get using getStringProperty(JmsConstants.JMSX_PRODUCER_TXID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMSX_CONSUMER_TXID

        static final java.lang.String JMSX_CONSUMER_TXID
        JMSX_CONSUMER_TXID property name. Sets or gets the JMS consumer's transmission ID of a message. Set using setStringProperty(JmsConstants.JMSX_PRODUCER_TXID, ); Get using getStringProperty(JmsConstants.JMSX_PRODUCER_TXID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMSX_RCV_TIMESTAMP

        static final java.lang.String JMSX_RCV_TIMESTAMP
        JMSX_RCV_TIMESTAMP property name. Determines the timestamp of receipt of the message. Get using getLongProperty(JmsConstants.JMSX_RCV_TIMESTAMP); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_EXCEPTION

        static final java.lang.String JMS_IBM_REPORT_EXCEPTION
        JMS_IBM_REPORT_EXCEPTION property name. Sets or gets the level of exception reporting that is generated. Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_EXCEPTION, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_EXCEPTION); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_EXPIRATION

        static final java.lang.String JMS_IBM_REPORT_EXPIRATION
        JMS_IBM_REPORT_EXPIRATION property name. Sets or gets the level of expiration reporting that is generated. Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_EXPIRATION, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_EXPIRATION); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_COA

        static final java.lang.String JMS_IBM_REPORT_COA
        JMS_IBM_REPORT_COA property name. Sets or gets the level of COA reporting that is generated. Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_COA, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_COA); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_COD

        static final java.lang.String JMS_IBM_REPORT_COD
        JMS_IBM_REPORT_COD property name. Sets or gets the level of COD reporting that is generated. Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_COD, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_COD); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_NAN

        static final java.lang.String JMS_IBM_REPORT_NAN
        JMS_IBM_REPORT_NAN property name. Sets or gets the level of NAN reporting that is generated. Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_NAN, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_NAN); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_PAN

        static final java.lang.String JMS_IBM_REPORT_PAN
        JMS_IBM_REPORT_PAN property name. Sets or gets the level of PAN reporting that is generated. Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_PAN, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_PAN); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_PASS_MSG_ID

        static final java.lang.String JMS_IBM_REPORT_PASS_MSG_ID
        JMS_IBM_REPORT_PASS_MSG_ID property name. Sets or gets whether the message ID will be shown in any reports that are generated. Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_PASS_MSG_ID, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_PASS_MSG_ID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_PASS_CORREL_ID

        static final java.lang.String JMS_IBM_REPORT_PASS_CORREL_ID
        JMS_IBM_REPORT_PASS_CORREL_ID property name. Sets or gets whether the correlation ID will be shown in any reports that are generated. Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_PASS_CORREL_ID, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_PASS_CORREL_ID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_DISCARD_MSG

        static final java.lang.String JMS_IBM_REPORT_DISCARD_MSG
        JMS_IBM_REPORT_DISCARD_MSG property name. Sets or gets whether the message content will be discarded in any reports that are generated. Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_DISCARD_MSG, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_DISCARD_MSG); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_REPORT_PASS_DISCARD_AND_EXPIRY

        static final java.lang.String JMS_IBM_REPORT_PASS_DISCARD_AND_EXPIRY
        JMS_IBM_REPORT_PASS_DISCARD_AND_EXPIRY Sets or gets the property on a message, such that if it is set the message descriptor of any report inherits:
        • MQRO_DISCARD_MSG if it was set.
        • The remaining expiry time of the message (if this is not an expiry report). If this is an expiry report the expiry time is set to 60 seconds.
        Set using setIntProperty(JmsConstants.JMS_IBM_REPORT_PASS_DISCARD_AND_EXPIRY, ); Get using getIntProperty(JmsConstants.JMS_IBM_REPORT_PASS_DISCARD_AND_EXPIRY);
        See Also:
        Constant Field Values
      • JMS_IBM_MSGTYPE

        static final java.lang.String JMS_IBM_MSGTYPE
        JMS_IBM_MSGTYPE property name. Sets or gets the message type of a message. Set using setIntProperty(JmsConstants.JMS_IBM_MSGTYPE, ); Get using getIntProperty(JmsConstants.JMS_IBM_MSGTYPE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_FEEDBACK

        static final java.lang.String JMS_IBM_FEEDBACK
        JMS_IBM_FEEDBACK property name. Sets or gets the feedback field of a message. Set using setIntProperty(JmsConstants.JMS_IBM_FEEDBACK, ); Get using getIntProperty(JmsConstants.JMS_IBM_FEEDBACK); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_FORMAT

        static final java.lang.String JMS_IBM_FORMAT
        JMS_IBM_FORMAT property name. Sets or gets the format field of a message. Set using setStringProperty(JmsConstants.JMS_IBM_FORMAT, ); Get using getStringProperty(JmsConstants.JMS_IBM_FORMAT); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_PUTAPPLTYPE

        static final java.lang.String JMS_IBM_PUTAPPLTYPE
        JMS_IBM_PUTAPPLTYPE property name. Sets or gets the type of the application that put the message. Set using setIntProperty(JmsConstants.JMS_IBM_PUTAPPLTYPE, ); Get using getIntProperty(JmsConstants.JMS_IBM_PUTAPPLTYPE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_ENCODING

        static final java.lang.String JMS_IBM_ENCODING
        JMS_IBM_ENCODING property name. Sets or gets the message encoding. Set using setIntProperty(JmsConstants.JMS_IBM_ENCODING, ); Get using getIntProperty(JmsConstants.JMS_IBM_ENCODING); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_CHARACTER_SET

        static final java.lang.String JMS_IBM_CHARACTER_SET
        JMS_IBM_CHARACTER_SET property name. Sets or gets the character set used in the message. Can be set as either a CCSID or a Java Charset name. When retrieved from a received message its value is returned as the canonical form of the Charset name and as such may vary from the literal value set by the sending application, if this was done using either a CCSID or alias for the Charset name. Set using setStringProperty(JmsConstants.JMS_IBM_CHARACTER_SET, ); Get using getStringProperty(JmsConstants.JMS_IBM_CHARACTER_SET); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_UNMAPPABLE_ACTION

        static final java.lang.String JMS_IBM_UNMAPPABLE_ACTION
        JMS_IBM_UNMAPPABLE_ACTION property name. Sets or gets the CodingErrorAction to apply when a character is unmappable in an encoding or decoding operation (Java <-> native representation)
        Should set as CodingErrorAction.{REPLACE|REPORT|IGNORE}.toString()
        See Also:
        Constant Field Values
      • JMS_IBM_UNMAPPABLE_REPLACEMENT

        static final java.lang.String JMS_IBM_UNMAPPABLE_REPLACEMENT
        JMS_IBM_UNMAPPABLE_REPLACEMENT property name. Sets or gets the replacement bytes to apply when a character is unmappable in an encoding or decoding operation (Java <-> native representation)
        The default Java replacement String will be used on decoding operations
        See Also:
        Constant Field Values
      • JMS_IBM_PUTDATE

        static final java.lang.String JMS_IBM_PUTDATE
        JMS_IBM_PUTDATE property name. Determines the date that this message was published. Get using getStringProperty(JmsConstants.JMS_IBM_PUTDATE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_PUTTIME

        static final java.lang.String JMS_IBM_PUTTIME
        JMS_IBM_PUTTIME property name. Determines the time that this message was published. Get using getStringProperty(JmsConstants.JMS_IBM_PUTTIME); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_LAST_MSG_IN_GROUP

        static final java.lang.String JMS_IBM_LAST_MSG_IN_GROUP
        JMS_IBM_LAST_MSG_IN_GROUP property name. Determines whether this is the last message in the group. Get using getBooleanProperty(JmsConstants.JMS_IBM_LAST_MSG_IN_GROUP); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_ARM_CORRELATOR

        static final java.lang.String JMS_IBM_ARM_CORRELATOR
        Deprecated. JMS_IBM_ARM_CORRELATOR property name. Use JMS_TOG_ARM_CORRELATOR in preference to this property. The Open Group Application Response Measurement Correlator property, set on a message. Set using setStringProperty(JmsConstants.JMS_IBM_ARM_CORRELATOR, ); Get using getStringProperty(JmsConstants.JMS_IBM_ARM_CORRELATOR); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_TOG_ARM_CORRELATOR

        static final java.lang.String JMS_TOG_ARM_CORRELATOR
        JMS_TOG_ARM_CORRELATOR property name. The Open Group Application Response Measurement Correlator property, set on a message. Set using setStringProperty(JmsConstants.JMS_TOG_ARM_CORRELATOR, ); Get using getStringProperty(JmsConstants.JMS_TOG_ARM_CORRELATOR); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_WAS_RM_CORRELATOR

        static final java.lang.String JMS_IBM_WAS_RM_CORRELATOR
        JMS_IBM_WAS_RM_CORRELATOR property name. The WAS Response Measurement Correlator property, set on a message. Set using setStringProperty(JmsConstants.JMS_IBM_WAS_RM_CORRELATOR, ); Get using getStringProperty(JmsConstants.JMS_IBM_WAS_RM_CORRELATOR); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_RETAIN

        static final java.lang.String JMS_IBM_RETAIN
        JMS_IBM_RETAIN property name. Sets whether or not retained publications are valid for the message. Set using setIntProperty(JmsConstants.JMS_IBM_RETAIN, ); Get using getIntProperty(JmsConstants.JMS_IBM_RETAIN); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_SUBSCRIPTION_USER_DATA

        static final java.lang.String JMS_IBM_SUBSCRIPTION_USER_DATA
        JMS_IBM_SUBSCRIPTION_USER_DATA property name. If an administratively defined durable subscription has been configured with subscription user data, then this user data is set as a property on messages that are passed to the subscription. Get using getStringProperty(JmsConstants.JMS_IBM_SUBSCRIPTION_USER_DATA); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_REPORT

        static final java.lang.String JMS_IBM_MQMD_REPORT
        JMS_IBM_MQMD_REPORT property name. Sets whether an MQMD report is generated for the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_REPORT, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_REPORT); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_MSGTYPE

        static final java.lang.String JMS_IBM_MQMD_MSGTYPE
        JMS_IBM_MQMD_MSGTYPE property name. Sets or gets the MQ message type for the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_MSGTYPE, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_MSGTYPE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_EXPIRY

        static final java.lang.String JMS_IBM_MQMD_EXPIRY
        JMS_IBM_MQMD_EXPIRY property name. Sets or gets the MQ expiry for the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_EXPIRY, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_EXPIRY); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_FEEDBACK

        static final java.lang.String JMS_IBM_MQMD_FEEDBACK
        JMS_IBM_MQMD_FEEDBACK property name. Sets or gets the MQ feedback value for the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_FEEDBACK, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_FEEDBACK); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_ENCODING

        static final java.lang.String JMS_IBM_MQMD_ENCODING
        JMS_IBM_MQMD_ENCODING property name. Sets or gets the MQ encoding for the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_ENCODING, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_ENCODING); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_CODEDCHARSETID

        static final java.lang.String JMS_IBM_MQMD_CODEDCHARSETID
        JMS_IBM_MQMD_CODEDCHARSETID property name. Sets or gets the MQ character set used for the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_CODEDCHARSETID, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_CODEDCHARSETID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_FORMAT

        static final java.lang.String JMS_IBM_MQMD_FORMAT
        JMS_IBM_MQMD_FORMAT property name. Sets or gets the MQ message descriptor format used for the message. Set using setStringProperty(JmsConstants.JMS_IBM_MQMD_FORMAT, ); Get using getStringProperty(JmsConstants.JMS_IBM_MQMD_FORMAT); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_PRIORITY

        static final java.lang.String JMS_IBM_MQMD_PRIORITY
        JMS_IBM_MQMD_PRIORITY property name. Sets or gets the MQ priority used for the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_PRIORITY, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_PRIORITY); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_PERSISTENCE

        static final java.lang.String JMS_IBM_MQMD_PERSISTENCE
        JMS_IBM_MQMD_PERSISTENCE property name. Sets or gets the MQ persistence used for the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_PERSISTENCE, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_PERSISTENCE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_MSGID

        static final java.lang.String JMS_IBM_MQMD_MSGID
        JMS_IBM_MQMD_MSGID property name. Sets or gets the MQ message ID used for the message. This takes or returns a byte array. Set using setObjectProperty(JmsConstants.JMS_IBM_MQMD_MSGID, ); Get using getObjectProperty(JmsConstants.JMS_IBM_MQMD_MSGID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_CORRELID

        static final java.lang.String JMS_IBM_MQMD_CORRELID
        JMS_IBM_MQMD_CORRELID property name. Sets or gets the MQ correlation ID used for the message. This takes or returns a byte array. Set using setObjectProperty(JmsConstants.JMS_IBM_MQMD_CORRELID, ); Get using getObjectProperty(JmsConstants.JMS_IBM_MQMD_CORRELID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_BACKOUTCOUNT

        static final java.lang.String JMS_IBM_MQMD_BACKOUTCOUNT
        JMS_IBM_MQMD_BACKOUTCOUNT property name. Sets or gets the MQ backout count on the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_BACKOUTCOUNT, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_BACKOUTCOUNT); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_REPLYTOQ

        static final java.lang.String JMS_IBM_MQMD_REPLYTOQ
        JMS_IBM_MQMD_REPLYTOQ property name. Sets or gets the reply-to queue on the message. Set using setStringProperty(JmsConstants.JMS_IBM_MQMD_REPLYTOQ, ); Get using getStringProperty(JmsConstants.JMS_IBM_MQMD_REPLYTOQ); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_REPLYTOQMGR

        static final java.lang.String JMS_IBM_MQMD_REPLYTOQMGR
        JMS_IBM_MQMD_REPLYTOQMGR property name. Sets or gets the reply-to queue manager on the message. Set using setStringProperty(JmsConstants.JMS_IBM_MQMD_REPLYTOQMGR, ); Get using getStringProperty(JmsConstants.JMS_IBM_MQMD_REPLYTOQMGR); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_USERIDENTIFIER

        static final java.lang.String JMS_IBM_MQMD_USERIDENTIFIER
        JMS_IBM_MQMD_USERIDENTIFIER property name. Sets or gets the MQ user identifier on the message. Set using setStringProperty(JmsConstants.JMS_IBM_MQMD_USERIDENTIFIER, ); Get using getStringProperty(JmsConstants.JMS_IBM_MQMD_USERIDENTIFIER); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_ACCOUNTINGTOKEN

        static final java.lang.String JMS_IBM_MQMD_ACCOUNTINGTOKEN
        JMS_IBM_MQMD_ACCOUNTINGTOKEN property name. Sets or gets the MQ accounting token used for the message. This takes or returns a byte array. Set using setObjectProperty(JmsConstants.JMS_IBM_MQMD_ACCOUNTINGTOKEN, ); Get using getObjectProperty(JmsConstants.JMS_IBM_MQMD_ACCOUNTINGTOKEN); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_APPLIDENTITYDATA

        static final java.lang.String JMS_IBM_MQMD_APPLIDENTITYDATA
        JMS_IBM_MQMD_APPLIDENTITYDATA property name. Sets or gets the MQ application identifier on the message. Set using setStringProperty(JmsConstants.JMS_IBM_MQMD_APPLIDENTITYDATA, ); Get using getStringProperty(JmsConstants.JMS_IBM_MQMD_APPLIDENTITYDATA); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_PUTAPPLTYPE

        static final java.lang.String JMS_IBM_MQMD_PUTAPPLTYPE
        JMS_IBM_MQMD_PUTAPPLTYPE property name. Sets or gets the MQ application type sending the message. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_PUTAPPLTYPE, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_PUTAPPLTYPE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_PUTAPPLNAME

        static final java.lang.String JMS_IBM_MQMD_PUTAPPLNAME
        JMS_IBM_MQMD_PUTAPPLNAME property name. Sets or gets the MQ application name sending the message. Set using setStringProperty(JmsConstants.JMS_IBM_MQMD_PUTAPPLNAME, ); Get using getStringProperty(JmsConstants.JMS_IBM_MQMD_PUTAPPLNAME); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_PUTDATE

        static final java.lang.String JMS_IBM_MQMD_PUTDATE
        JMS_IBM_MQMD_PUTDATE property name. Gets the MQ datestamp when the message was sent. Get using getStringProperty(JmsConstants.JMS_IBM_MQMD_PUTDATE); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_PUTTIME

        static final java.lang.String JMS_IBM_MQMD_PUTTIME
        JMS_IBM_MQMD_PUTTIME property name. Gets the MQ timestamp when the message was sent. Get using getStringProperty(JmsConstants.JMS_IBM_MQMD_PUTTIME); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_APPLORIGINDATA

        static final java.lang.String JMS_IBM_MQMD_APPLORIGINDATA
        JMS_IBM_MQMD_APPLORIGINDATA property name. Sets or gets the MQ application origin used to send the message. Set using setStringProperty(JmsConstants.JMS_IBM_MQMD_APPLORIGINDATA, ); Get using getStringProperty(JmsConstants.JMS_IBM_MQMD_APPLORIGINDATA); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_GROUPID

        static final java.lang.String JMS_IBM_MQMD_GROUPID
        JMS_IBM_MQMD_GROUPID property name. Sets or gets the MQ group ID used to send the message. This takes or returns a byte array. Set using setObjectProperty(JmsConstants.JMS_IBM_MQMD_GROUPID, ); Get using getObjectProperty(JmsConstants.JMS_IBM_MQMD_GROUPID); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_MSGSEQNUMBER

        static final java.lang.String JMS_IBM_MQMD_MSGSEQNUMBER
        JMS_IBM_MQMD_MSGSEQNUMBER property name. Gets the MQ message sequence number of the message. Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_MSGSEQNUMBER); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_OFFSET

        static final java.lang.String JMS_IBM_MQMD_OFFSET
        JMS_IBM_MQMD_OFFSET property name. Sets or gets the MQ message offset. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_OFFSET, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_OFFSET); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_MSGFLAGS

        static final java.lang.String JMS_IBM_MQMD_MSGFLAGS
        JMS_IBM_MQMD_MSGFLAGS property name. Sets or gets the MQ message flags. Set using setIntProperty(JmsConstants.JMS_IBM_MQMD_MSGFLAGS, ); Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_MSGFLAGS); Valid on a Message object.
        See Also:
        Constant Field Values
      • JMS_IBM_MQMD_ORIGINALLENGTH

        static final java.lang.String JMS_IBM_MQMD_ORIGINALLENGTH
        JMS_IBM_MQMD_ORIGINALLENGTH property name. Gets the original length of the MQ message. Get using getIntProperty(JmsConstants.JMS_IBM_MQMD_ORIGINALLENGTH); Valid on a Message object.
        See Also:
        Constant Field Values
      • ACKNOWLEDGE_MODE

        static final java.lang.String ACKNOWLEDGE_MODE
        XMSC_ACKNOWLEDGE_MODE property name. The acknowledge mode of the session being used. Set using setIntProperty(JmsConstants.ACKNOWLEDGE_MODE, ); Get using getIntProperty(JmsConstants.ACKNOWLEDGE_MODE); Valid for a Session.
        See Also:
        Constant Field Values
      • TRANSACTED

        static final java.lang.String TRANSACTED
        XMSC_TRANSACTED property name. Whether the session is transacted or not. Set using setBooleanProperty(JmsConstants.TRANSACTED, ); Get using getBooleanProperty(JmsConstants.TRANSACTED); Valid for a Session.
        See Also:
        Constant Field Values
      • CCSID_UTF8

        static final int CCSID_UTF8
        Numeric value for CCSID_UTF8. Used to represent CCSID encoding using UTF-8.
        See Also:
        Constant Field Values
      • CCSID_UTF16

        static final int CCSID_UTF16
        Numeric value for CCSID_UTF16. Used to represent CCSID encoding using UTF-16.
        See Also:
        Constant Field Values
      • CCSID_UTF32

        static final int CCSID_UTF32
        Numeric value for CCSID_UTF32. Used to represent CCSID encoding using UTF-32.
        See Also:
        Constant Field Values
      • DELIVERY_AS_APP

        static final int DELIVERY_AS_APP
        DELIVERY_MODE property value: DELIVERY_AS_APP. Message delivery will be determined by the mode set in the application. Set using setIntProperty(JmsConstants.DELIVERY_MODE, JmsConstants.DELIVERY_AS_APP); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • DELIVERY_AS_DEST

        static final int DELIVERY_AS_DEST
        DELIVERY_MODE property value: DELIVERY_AS_DEST. Message delivery will be determined by the mode set on the destination object. Set using setIntProperty(JmsConstants.DELIVERY_MODE, JmsConstants.DELIVERY_AS_DEST); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • DELIVERY_NOT_PERSISTENT

        static final int DELIVERY_NOT_PERSISTENT
        DELIVERY_MODE property value: DELIVERY_NOT_PERSISTENT. Messages will be delivered in non-persistent mode. Set using setIntProperty(JmsConstants.DELIVERY_MODE, JmsConstants.DELIVERY_NOT_PERSISTENT); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • DELIVERY_PERSISTENT

        static final int DELIVERY_PERSISTENT
        DELIVERY_MODE property value: DELIVERY_PERSISTENT. Messages will be delivered in persistent mode. Set using setIntProperty(JmsConstants.DELIVERY_MODE, JmsConstants.DELIVERY_PERSISTENT); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • RETAIN_PUBLICATION

        static final int RETAIN_PUBLICATION
        JMS_IBM_RETAIN property value : RETAIN_PUBLICATION. Publication will be retained by the queue manager for delivery to any new subscribers. Set using setIntProperty(JmsConstants.JMS_IBM_RETAIN, JmsConstants.RETAIN_PUBLICATION); Message Constant
        See Also:
        Constant Field Values
      • TIME_TO_LIVE_UNLIMITED

        static final int TIME_TO_LIVE_UNLIMITED
        TIME_TO_LIVE property value: TIME_TO_LIVE_UNLIMITED. Time to live will be unlimited for the message - the message will not expire. Set using setLongProperty(JmsConstants.TIME_TO_LIVE, JmsConstants.TIME_TO_LIVE_UNLIMITED); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • TIME_TO_LIVE_AS_APP

        static final int TIME_TO_LIVE_AS_APP
        TIME_TO_LIVE property value: TIME_TO_LIVE_AS_APP. Time to live will be set to the application's default value. Set using setLongProperty(JmsConstants.TIME_TO_LIVE, JmsConstants.TIME_TO_LIVE_AS_APP); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • PRIORITY_AS_DEST

        static final int PRIORITY_AS_DEST
        PRIORITY property value: PRIORITY_AS_DEST. Time to live will be set to the value used by the destination. Set using setIntProperty(JmsConstants.PRIORITY, JmsConstants.PRIORITY_AS_DEST); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • PRIORITY_AS_APP

        static final int PRIORITY_AS_APP
        PRIORITY property value: PRIORITY_AS_APP. Priority for the message will be set to the application's default priority. Set using setIntProperty(JmsConstants.PRIORITY, JmsConstants.PRIORITY_AS_APP); Valid on a MessageProducer object and a Destination object.
        See Also:
        Constant Field Values
      • SESSION_TRANSACTED

        static final int SESSION_TRANSACTED
        ACKNOWLEDGE_MODE property value: SESSION_TRANSACTED. This indicates that the session in use is transacted, which implies the acknowledge mode is ignored. Get using getIntProperty(JmsConstants.ACKNOWLEDGE_MODE); Valid for a Session.
        See Also:
        Constant Field Values
      • AUTO_ACKNOWLEDGE

        static final int AUTO_ACKNOWLEDGE
        ACKNOWLEDGE_MODE property value: AUTO_ACKNOWLEDGE. Messages will be automatically acknowledged as soon as they arrive. Set using setIntProperty(JmsConstants.ACKNOWLEDGE_MODE, JmsConstants.AUTO_ACKNOWLEDGE); Valid for a Session.
        See Also:
        Constant Field Values
      • CLIENT_ACKNOWLEDGE

        static final int CLIENT_ACKNOWLEDGE
        ACKNOWLEDGE_MODE property value: CLIENT_ACKNOWLEDGE. Messages must be acknowledged by invoking acknowledge() on the received message. Set using setIntProperty(JmsConstants.ACKNOWLEDGE_MODE, JmsConstants.CLIENT_ACKNOWLEDGE); Valid for a Session.
        See Also:
        Constant Field Values
      • DUPS_OK_ACKNOWLEDGE

        static final int DUPS_OK_ACKNOWLEDGE
        ACKNOWLEDGE_MODE property value: DUPS_OK_ACKNOWLEDGE. Messages will be automatically acknowledged, but acknowledgement may not occur immediately. If this is set, the possibility exists for messages to be delivered more than once. Set using setIntProperty(JmsConstants.ACKNOWLEDGE_MODE, JmsConstants.DUPS_OK_ACKNOWLEDGE); Valid for a Session.
        See Also:
        Constant Field Values
      • INSERT_EXCEPTION

        static final java.lang.String INSERT_EXCEPTION
        INSERT_EXCEPTION property name. JMSException message constant - exception
        See Also:
        Constant Field Values
      • INSERT_METHOD

        static final java.lang.String INSERT_METHOD
        INSERT_METHOD property name. JMSException message constant - method name
        See Also:
        Constant Field Values
      • INSERT_OBJECT

        static final java.lang.String INSERT_OBJECT
        INSERT_OBJECT property name. JMSException message constant - object
        See Also:
        Constant Field Values
      • INSERT_BATCH_SIZE

        static final java.lang.String INSERT_BATCH_SIZE
        INSERT_BATCH_SIZE property name. JMSException message constant - batch size
        See Also:
        Constant Field Values
      • INSERT_SESSION

        static final java.lang.String INSERT_SESSION
        INSERT_SESSION property name. JMSException message constant - session
        See Also:
        Constant Field Values
      • INSERT_NAME

        static final java.lang.String INSERT_NAME
        INSERT_NAME property name. JMSException message constant - name
        See Also:
        Constant Field Values
      • INSERT_VALUE

        static final java.lang.String INSERT_VALUE
        INSERT_VALUE property name. JMSException message constant - value
        See Also:
        Constant Field Values
      • INSERT_PROPERTY

        static final java.lang.String INSERT_PROPERTY
        INSERT_PROPERTY property name. JMSException message constant - property
        See Also:
        Constant Field Values
      • INSERT_TYPE

        static final java.lang.String INSERT_TYPE
        INSERT_TYPE property name. JMSException message constant - type
        See Also:
        Constant Field Values
      • INSERT_OTHER_TYPE

        static final java.lang.String INSERT_OTHER_TYPE
        INSERT_OTHER_TYPE property name. JMSException message constant - other type
        See Also:
        Constant Field Values
      • INSERT_FIELD

        static final java.lang.String INSERT_FIELD
        INSERT_FIELD property name. JMSException message constant - field
        See Also:
        Constant Field Values
      • INSERT_DESTINATION_NAME

        static final java.lang.String INSERT_DESTINATION_NAME
        INSERT_DESTINATION_NAME property name. JMSException message constant - destination name
        See Also:
        Constant Field Values
      • INSERT_TIMEOUT

        static final java.lang.String INSERT_TIMEOUT
        INSERT_TIMEOUT property name. JMSException message constant - timeout
        See Also:
        Constant Field Values
      • OBJECT_IDENTITY

        static final java.lang.String OBJECT_IDENTITY
        Property stored within each object to help with diagnostics
        See Also:
        Constant Field Values
      • INSERT_QUEUE_MANAGER_NAME

        static final java.lang.String INSERT_QUEUE_MANAGER_NAME
        INSERT_QUEUE_MANAGER_NAME property name. JMSException message constant - queue manager name.
        See Also:
        Constant Field Values
      • INSERT_MESSAGE_ID

        static final java.lang.String INSERT_MESSAGE_ID
        INSERT_MESSAGE_ID property name. JMSException message constant - message identifier.
        See Also:
        Constant Field Values
      • INSERT_TIMESTAMP

        static final java.lang.String INSERT_TIMESTAMP
        INSERT_TIMESTAMP property name. JMSException message constant - timestamp.
        See Also:
        Constant Field Values
      • INSERT_DATESTAMP

        static final java.lang.String INSERT_DATESTAMP
        INSERT_DATESTAMP property name. JMSException message constant - datestamp.
        See Also:
        Constant Field Values
      • INSERT_ALIAS_DESTINATION_NAME

        static final java.lang.String INSERT_ALIAS_DESTINATION_NAME
        INSERT_DATESTAMP property name. JMSException message constant - alias destination name.
        See Also:
        Constant Field Values
      • SUPPORT_MQ_EXTENSIONS

        static final java.lang.String SUPPORT_MQ_EXTENSIONS
        SUPPORT_MQ_EXTENSIONS system property name If this is set to true, then we preserve older behaviour, outside the TCK
        • duplicate client ids are allowed
        • the special priority and ttl values are allowed
        See Also:
        Constant Field Values
      • BYTE_STREAM_READ_ONLY_AFTER_SEND

        static final java.lang.String BYTE_STREAM_READ_ONLY_AFTER_SEND
        System Property that controls the state of Bytes and Stream messages post send.
        • TRUE means the objects are set to read-only post send
        • FALSE means the objects are set to write-only post send
        See Also:
        Constant Field Values
      • SUBSCRIPTION_NAME

        static final java.lang.String SUBSCRIPTION_NAME
        SUBSCRIPTION_NAME property name. Subscription name constant. Full name for the subscription Set by parameter on createDurable...() or createShared...() calls; Valid on a Subscription object.
        See Also:
        Constant Field Values
      • CAPABILITY_NATIVE_CICS_UNMANAGED

        static final java.lang.String CAPABILITY_NATIVE_CICS_UNMANAGED
        For use with the doesConnectionSupport method on JmsConnectionMetaDataImpl. Indicates that the current connection is running over the CICS adapter either outside of WebSphere Liberty Profile (WLP), or in an unmanaged WLP environment. Unmanaged means that the resource adapter was not used to create the connection.
        See Also:
        Constant Field Values
      • CAPABILITY_NATIVE_IMS

        static final java.lang.String CAPABILITY_NATIVE_IMS
        For use with the doesConnectionSupport method on JmsConnectionMetaDataImpl. Indicates that the current connection is running over the IMS adapter.
        See Also:
        Constant Field Values
      • OVERRIDE_CF_FROM_PROPERTYSTORE

        static final java.lang.String OVERRIDE_CF_FROM_PROPERTYSTORE
        See Also:
        Constant Field Values
      • INSERT_PROPERTY_OVERRIDE_LIST

        static final java.lang.String INSERT_PROPERTY_OVERRIDE_LIST
        See Also:
        Constant Field Values
      • INSERT_OVERRIDDEN_PROPERTY

        static final java.lang.String INSERT_OVERRIDDEN_PROPERTY
        See Also:
        Constant Field Values
      • INSERT_ORIGINAL__PROPERTY_VALUE

        static final java.lang.String INSERT_ORIGINAL__PROPERTY_VALUE
        See Also:
        Constant Field Values
      • INSERT_NEW_PROPERTY_VALUE

        static final java.lang.String INSERT_NEW_PROPERTY_VALUE
        See Also:
        Constant Field Values
(c) Copyright IBM Corp. 2008, 2015. All Rights Reserved.