Java javax.jms ObjectMessage fields, constructors, methods, implement or subclass

Example usage for Java javax.jms ObjectMessage fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.jms ObjectMessage.

The text is from its open source code.

Implementation

javax.jms.ObjectMessage has the following implementations.
Click this link to see all its implementation.

Method

voidacknowledge()
Acknowledges all consumed messages of the session of this consumed message.
voidclearProperties()
Clears a message's properties.
booleangetBooleanProperty(String name)
Returns the value of the boolean property with the specified name.
intgetIntProperty(String name)
Returns the value of the int property with the specified name.
StringgetJMSCorrelationID()
Gets the correlation ID for the message.
StringgetJMSMessageID()
Gets the message ID.
intgetJMSPriority()
Gets the message priority level.
DestinationgetJMSReplyTo()
Gets the Destination object to which a reply to this message should be sent.
StringgetJMSType()
Gets the message type identifier supplied by the client when the message was sent.
longgetLongProperty(String name)
Returns the value of the long property with the specified name.
SerializablegetObject()
Gets the serializable object containing this message's data.
ObjectgetObjectProperty(String name)
Returns the value of the Java object property with the specified name.
EnumerationgetPropertyNames()
Returns an Enumeration of all the property names.
StringgetStringProperty(String name)
Returns the value of the String property with the specified name.
booleanpropertyExists(String name)
Indicates whether a property value exists.
voidsetBooleanProperty(String name, boolean value)
Sets a boolean property value with the specified name into the message.
voidsetIntProperty(String name, int value)
Sets an int property value with the specified name into the message.
voidsetJMSCorrelationID(String correlationID)
Sets the correlation ID for the message.
voidsetJMSDeliveryMode(int deliveryMode)
Sets the DeliveryMode value for this message.
voidsetJMSMessageID(String id)
Sets the message ID.
voidsetJMSReplyTo(Destination replyTo)
Sets the Destination object to which a reply to this message should be sent.
voidsetJMSType(String type)
Sets the message type.
voidsetLongProperty(String name, long value)
Sets a long property value with the specified name into the message.
voidsetObject(Serializable object)
Sets the serializable object containing this message's data.
voidsetObjectProperty(String name, Object value)
Sets a Java object property value with the specified name into the message.
voidsetStringProperty(String name, String value)
Sets a String property value with the specified name into the message.
StringtoString()
Returns a string representation of the object.