Class ActiveMQMapMessage
- java.lang.Object
-
- org.apache.activemq.command.BaseCommand
-
- org.apache.activemq.command.Message
-
- org.apache.activemq.command.ActiveMQMessage
-
- org.apache.activemq.command.ActiveMQMapMessage
-
- All Implemented Interfaces:
MapMessage
,Message
,MessageReference
,Command
,DataStructure
,MarshallAware
,Message
,ScheduledMessage
public class ActiveMQMapMessage extends ActiveMQMessage implements MapMessage
AMapMessage
object is used to send a set of name-value pairs. The names areString
objects, and the values are primitive data types in the Java programming language. The names must have a value that is not null, and not an empty string. The entries can be accessed sequentially or randomly by name. The order of the entries is undefined.MapMessage
inherits from theMessage
interface and adds a message body that contains a Map.The primitive types can be read or written explicitly using methods for each type. They may also be read or written generically as objects. For instance, a call to
MapMessage.setInt("foo", 6)
is equivalent toMapMessage.setObject("foo", new Integer(6))
. Both forms are provided, because the explicit form is convenient for static programming, and the object form is needed when types are not known at compile time.When a client receives a
MapMessage
, it is in read-only mode. If a client attempts to write to the message at this point, aMessageNotWriteableException
is thrown. IfclearBody
is called, the message can now be both read from and written to.MapMessage
objects support the following conversion table. The marked cases must be supported. The unmarked cases must throw aJMSException
. TheString
-to-primitive conversions may throw a runtime exception if the primitive'svalueOf()
method does not accept it as a validString
representation of the primitive.A value written as the row type can be read as the column type.
| | boolean byte short char int long float double String byte[] |---------------------------------------------------------------------- |boolean | X X |byte | X X X X X |short | X X X X |char | X X |int | X X X |long | X X |float | X X X |double | X X |String | X X X X X X X X |byte[] | X |---------------------------------------------------------------------- <p/>
Attempting to read a null value as a primitive type must be treated as calling the primitive's corresponding
valueOf(String)
conversion method with a null value. Sincechar
does not support aString
conversion, attempting to read a null value as achar
must throw aNullPointerException
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.activemq.command.Message
Message.MessageDestination
-
-
Field Summary
Fields Modifier and Type Field Description static byte
DATA_STRUCTURE_TYPE
protected Map<String,Object>
map
-
Fields inherited from class org.apache.activemq.command.ActiveMQMessage
acknowledgeCallback, BROKER_PATH_PROPERTY, DLQ_DELIVERY_FAILURE_CAUSE_PROPERTY
-
Fields inherited from class org.apache.activemq.command.Message
arrival, brokerInTime, brokerOutTime, compressed, content, correlationId, dataStructure, DEFAULT_MINIMUM_MESSAGE_SIZE, destination, droppable, expiration, groupID, groupSequence, jmsXGroupFirstForConsumer, marshalledProperties, messageId, ORIGINAL_EXPIRATION, originalDestination, originalTransactionId, persistent, priority, producerId, properties, readOnlyBody, readOnlyProperties, recievedByDFBridge, redeliveryCounter, replyTo, size, targetConsumerId, timestamp, transactionId, type, userID
-
Fields inherited from class org.apache.activemq.command.BaseCommand
commandId, responseRequired
-
Fields inherited from interface javax.jms.Message
DEFAULT_DELIVERY_MODE, DEFAULT_PRIORITY, DEFAULT_TIME_TO_LIVE
-
Fields inherited from interface org.apache.activemq.ScheduledMessage
AMQ_SCHEDULED_CRON, AMQ_SCHEDULED_DELAY, AMQ_SCHEDULED_ID, AMQ_SCHEDULED_PERIOD, AMQ_SCHEDULED_REPEAT, AMQ_SCHEDULER_ACTION, AMQ_SCHEDULER_ACTION_BROWSE, AMQ_SCHEDULER_ACTION_END_TIME, AMQ_SCHEDULER_ACTION_REMOVE, AMQ_SCHEDULER_ACTION_REMOVEALL, AMQ_SCHEDULER_ACTION_START_TIME, AMQ_SCHEDULER_MANAGEMENT_DESTINATION
-
-
Constructor Summary
Constructors Constructor Description ActiveMQMapMessage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
beforeMarshall(WireFormat wireFormat)
void
clearBody()
Clears out the message body.void
clearUnMarshalledState()
void
compress()
Message
copy()
boolean
getBoolean(String name)
Returns theboolean
value with the specified name.byte
getByte(String name)
Returns thebyte
value with the specified name.byte[]
getBytes(String name)
Returns the byte array value with the specified name.char
getChar(String name)
Returns the Unicode character value with the specified name.Map<String,Object>
getContentMap()
byte
getDataStructureType()
double
getDouble(String name)
Returns thedouble
value with the specified name.float
getFloat(String name)
Returns thefloat
value with the specified name.int
getInt(String name)
Returns theint
value with the specified name.String
getJMSXMimeType()
Returns the MIME type of this mesage.long
getLong(String name)
Returns thelong
value with the specified name.Enumeration<String>
getMapNames()
Returns anEnumeration
of all the names in theMapMessage
object.Object
getObject(String name)
Returns the value of the object with the specified name.short
getShort(String name)
Returns theshort
value with the specified name.String
getString(String name)
Returns theString
value with the specified name.boolean
isContentMarshalled()
boolean
itemExists(String name)
Indicates whether an item exists in thisMapMessage
object.protected void
put(String name, Object value)
void
setBoolean(String name, boolean value)
Sets aboolean
value with the specified name into the Map.void
setByte(String name, byte value)
Sets abyte
value with the specified name into the Map.void
setBytes(String name, byte[] value)
Sets a byte array value with the specified name into the Map.void
setBytes(String name, byte[] value, int offset, int length)
Sets a portion of the byte array value with the specified name into the Map.void
setChar(String name, char value)
Sets a Unicode character value with the specified name into the Map.void
setDouble(String name, double value)
Sets adouble
value with the specified name into the Map.void
setFloat(String name, float value)
Sets afloat
value with the specified name into the Map.void
setInt(String name, int value)
Sets anint
value with the specified name into the Map.void
setLong(String name, long value)
Sets along
value with the specified name into the Map.void
setObject(String name, Object value)
Sets an object value with the specified name into the Map.void
setShort(String name, short value)
Sets ashort
value with the specified name into the Map.void
setString(String name, String value)
Sets aString
value with the specified name into the Map.void
storeContent()
void
storeContentAndClear()
String
toString()
-
Methods inherited from class org.apache.activemq.command.ActiveMQMessage
acknowledge, checkReadOnlyBody, checkReadOnlyProperties, checkValidObject, clearProperties, convertScheduled, copy, decodeString, encodeString, equals, getAcknowledgeCallback, getAllPropertyNames, getBooleanProperty, getByteProperty, getDoubleProperty, getFloatProperty, getIntProperty, getJMSCorrelationID, getJMSCorrelationIDAsBytes, getJMSDeliveryMode, getJMSDestination, getJMSExpiration, getJMSMessageID, getJMSPriority, getJMSRedelivered, getJMSReplyTo, getJMSTimestamp, getJMSType, getLongProperty, getObjectProperty, getPropertyNames, getShortProperty, getStringProperty, hashCode, onSend, propertyExists, setAcknowledgeCallback, setBooleanProperty, setBooleanProperty, setByteProperty, setDoubleProperty, setFloatProperty, setIntProperty, setJMSCorrelationID, setJMSCorrelationIDAsBytes, setJMSDeliveryMode, setJMSDestination, setJMSExpiration, setJMSMessageID, setJMSMessageID, setJMSPriority, setJMSRedelivered, setJMSReplyTo, setJMSTimestamp, setJMSType, setLongProperty, setObjectProperty, setObjectProperty, setProperties, setShortProperty, setStringProperty, visit
-
Methods inherited from class org.apache.activemq.command.Message
afterMarshall, afterUnmarshall, beforeUnmarshall, canProcessAsExpired, copy, decrementReferenceCount, doCompress, getArrival, getBrokerInTime, getBrokerOutTime, getBrokerPath, getCluster, getConnection, getContent, getCorrelationId, getDataStructure, getDestination, getExpiration, getGroupID, getGroupSequence, getMarshalledProperties, getMemoryUsage, getMessage, getMessageHardRef, getMessageId, getMinimumMessageSize, getOriginalDestination, getOriginalTransactionId, getPriority, getProducerId, getProperties, getProperty, getRedeliveryCounter, getReferenceCount, getRegionDestination, getReplyTo, getSize, getTargetConsumerId, getTimestamp, getTransactionId, getType, getUserID, incrementRedeliveryCounter, incrementReferenceCount, isAdvisory, isCompressed, isDroppable, isDropped, isExpired, isInTransaction, isJMSXGroupFirstForConsumer, isMarshallAware, isMarshalled, isMessage, isPersistent, isPropertiesMarshalled, isReadOnlyBody, isReadOnlyProperties, isRecievedByDFBridge, isRedelivered, lazyCreateProperties, onMessageRolledBack, removeProperty, setArrival, setBrokerInTime, setBrokerOutTime, setBrokerPath, setCluster, setCompressed, setConnection, setContent, setCorrelationId, setDataStructure, setDestination, setDroppable, setExpiration, setGroupID, setGroupSequence, setJMSXGroupFirstForConsumer, setMarshalledProperties, setMemoryUsage, setMessageId, setOriginalDestination, setOriginalTransactionId, setPersistent, setPriority, setProducerId, setProperty, setReadOnlyBody, setReadOnlyProperties, setRecievedByDFBridge, setRedelivered, setRedeliveryCounter, setRegionDestination, setReplyTo, setTargetConsumerId, setTimestamp, setTransactionId, setType, setUserID, toString
-
Methods inherited from class org.apache.activemq.command.BaseCommand
copy, getCommandId, getFrom, getTo, isBrokerInfo, isConnectionControl, isConsumerControl, isMessageAck, isMessageDispatch, isMessageDispatchNotification, isResponse, isResponseRequired, isShutdownInfo, isWireFormatInfo, setCommandId, setFrom, setResponseRequired, setTo
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javax.jms.Message
acknowledge, clearProperties, getBooleanProperty, getByteProperty, getDoubleProperty, getFloatProperty, getIntProperty, getJMSCorrelationID, getJMSCorrelationIDAsBytes, getJMSDeliveryMode, getJMSDestination, getJMSExpiration, getJMSMessageID, getJMSPriority, getJMSRedelivered, getJMSReplyTo, getJMSTimestamp, getJMSType, getLongProperty, getObjectProperty, getPropertyNames, getShortProperty, getStringProperty, propertyExists, setBooleanProperty, setByteProperty, setDoubleProperty, setFloatProperty, setIntProperty, setJMSCorrelationID, setJMSCorrelationIDAsBytes, setJMSDeliveryMode, setJMSDestination, setJMSExpiration, setJMSMessageID, setJMSPriority, setJMSRedelivered, setJMSReplyTo, setJMSTimestamp, setJMSType, setLongProperty, setObjectProperty, setShortProperty, setStringProperty
-
-
-
-
Field Detail
-
DATA_STRUCTURE_TYPE
public static final byte DATA_STRUCTURE_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
copy
public Message copy()
- Overrides:
copy
in classActiveMQMessage
-
beforeMarshall
public void beforeMarshall(WireFormat wireFormat) throws IOException
- Specified by:
beforeMarshall
in interfaceMarshallAware
- Overrides:
beforeMarshall
in classMessage
- Throws:
IOException
-
clearUnMarshalledState
public void clearUnMarshalledState() throws JMSException
- Overrides:
clearUnMarshalledState
in classMessage
- Throws:
JMSException
-
storeContentAndClear
public void storeContentAndClear()
- Overrides:
storeContentAndClear
in classActiveMQMessage
-
storeContent
public void storeContent()
- Overrides:
storeContent
in classActiveMQMessage
-
isContentMarshalled
public boolean isContentMarshalled()
- Overrides:
isContentMarshalled
in classActiveMQMessage
-
getDataStructureType
public byte getDataStructureType()
- Specified by:
getDataStructureType
in interfaceDataStructure
- Overrides:
getDataStructureType
in classActiveMQMessage
- Returns:
- The type of the data structure
-
getJMSXMimeType
public String getJMSXMimeType()
Description copied from interface:Message
Returns the MIME type of this mesage. This can be used in selectors to filter on the MIME types of the different JMS messages, or in the case ofBlobMessage
it allows you to create a selector on the MIME type of the BLOB body- Specified by:
getJMSXMimeType
in interfaceMessage
- Overrides:
getJMSXMimeType
in classActiveMQMessage
-
clearBody
public void clearBody() throws JMSException
Clears out the message body. Clearing a message's body does not clear its header values or property entries.If this message body was read-only, calling this method leaves the message body in the same state as an empty body in a newly created message.
- Specified by:
clearBody
in interfaceMessage
- Overrides:
clearBody
in classActiveMQMessage
- Throws:
JMSException
-
getBoolean
public boolean getBoolean(String name) throws JMSException
Returns theboolean
value with the specified name.- Specified by:
getBoolean
in interfaceMapMessage
- Parameters:
name
- the name of theboolean
- Returns:
- the
boolean
value with the specified name - Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getByte
public byte getByte(String name) throws JMSException
Returns thebyte
value with the specified name.- Specified by:
getByte
in interfaceMapMessage
- Parameters:
name
- the name of thebyte
- Returns:
- the
byte
value with the specified name - Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getShort
public short getShort(String name) throws JMSException
Returns theshort
value with the specified name.- Specified by:
getShort
in interfaceMapMessage
- Parameters:
name
- the name of theshort
- Returns:
- the
short
value with the specified name - Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getChar
public char getChar(String name) throws JMSException
Returns the Unicode character value with the specified name.- Specified by:
getChar
in interfaceMapMessage
- Parameters:
name
- the name of the Unicode character- Returns:
- the Unicode character value with the specified name
- Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getInt
public int getInt(String name) throws JMSException
Returns theint
value with the specified name.- Specified by:
getInt
in interfaceMapMessage
- Parameters:
name
- the name of theint
- Returns:
- the
int
value with the specified name - Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getLong
public long getLong(String name) throws JMSException
Returns thelong
value with the specified name.- Specified by:
getLong
in interfaceMapMessage
- Parameters:
name
- the name of thelong
- Returns:
- the
long
value with the specified name - Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getFloat
public float getFloat(String name) throws JMSException
Returns thefloat
value with the specified name.- Specified by:
getFloat
in interfaceMapMessage
- Parameters:
name
- the name of thefloat
- Returns:
- the
float
value with the specified name - Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getDouble
public double getDouble(String name) throws JMSException
Returns thedouble
value with the specified name.- Specified by:
getDouble
in interfaceMapMessage
- Parameters:
name
- the name of thedouble
- Returns:
- the
double
value with the specified name - Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getString
public String getString(String name) throws JMSException
Returns theString
value with the specified name.- Specified by:
getString
in interfaceMapMessage
- Parameters:
name
- the name of theString
- Returns:
- the
String
value with the specified name; if there is no item by this name, a null value is returned - Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getBytes
public byte[] getBytes(String name) throws JMSException
Returns the byte array value with the specified name.- Specified by:
getBytes
in interfaceMapMessage
- Parameters:
name
- the name of the byte array- Returns:
- a copy of the byte array value with the specified name; if there is no item by this name, a null value is returned.
- Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.MessageFormatException
- if this type conversion is invalid.
-
getObject
public Object getObject(String name) throws JMSException
Returns the value of the object with the specified name.This method can be used to return, in objectified format, an object in the Java programming language ("Java object") that had been stored in the Map with the equivalent
setObject
method call, or its equivalent primitiveset type
method.Note that byte values are returned as
byte[]
, notByte[]
.- Specified by:
getObject
in interfaceMapMessage
- Parameters:
name
- the name of the Java object- Returns:
- a copy of the Java object value with the specified name, in
objectified format (for example, if the object was set as an
int
, anInteger
is returned); if there is no item by this name, a null value is returned - Throws:
JMSException
- if the JMS provider fails to read the message due to some internal error.
-
getMapNames
public Enumeration<String> getMapNames() throws JMSException
Returns anEnumeration
of all the names in theMapMessage
object.- Specified by:
getMapNames
in interfaceMapMessage
- Returns:
- an enumeration of all the names in this
MapMessage
- Throws:
JMSException
-
put
protected void put(String name, Object value) throws JMSException
- Throws:
JMSException
-
setBoolean
public void setBoolean(String name, boolean value) throws JMSException
Sets aboolean
value with the specified name into the Map.- Specified by:
setBoolean
in interfaceMapMessage
- Parameters:
name
- the name of theboolean
value
- theboolean
value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setByte
public void setByte(String name, byte value) throws JMSException
Sets abyte
value with the specified name into the Map.- Specified by:
setByte
in interfaceMapMessage
- Parameters:
name
- the name of thebyte
value
- thebyte
value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setShort
public void setShort(String name, short value) throws JMSException
Sets ashort
value with the specified name into the Map.- Specified by:
setShort
in interfaceMapMessage
- Parameters:
name
- the name of theshort
value
- theshort
value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setChar
public void setChar(String name, char value) throws JMSException
Sets a Unicode character value with the specified name into the Map.- Specified by:
setChar
in interfaceMapMessage
- Parameters:
name
- the name of the Unicode charactervalue
- the Unicode character value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setInt
public void setInt(String name, int value) throws JMSException
Sets anint
value with the specified name into the Map.- Specified by:
setInt
in interfaceMapMessage
- Parameters:
name
- the name of theint
value
- theint
value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setLong
public void setLong(String name, long value) throws JMSException
Sets along
value with the specified name into the Map.- Specified by:
setLong
in interfaceMapMessage
- Parameters:
name
- the name of thelong
value
- thelong
value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setFloat
public void setFloat(String name, float value) throws JMSException
Sets afloat
value with the specified name into the Map.- Specified by:
setFloat
in interfaceMapMessage
- Parameters:
name
- the name of thefloat
value
- thefloat
value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setDouble
public void setDouble(String name, double value) throws JMSException
Sets adouble
value with the specified name into the Map.- Specified by:
setDouble
in interfaceMapMessage
- Parameters:
name
- the name of thedouble
value
- thedouble
value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setString
public void setString(String name, String value) throws JMSException
Sets aString
value with the specified name into the Map.- Specified by:
setString
in interfaceMapMessage
- Parameters:
name
- the name of theString
value
- theString
value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setBytes
public void setBytes(String name, byte[] value) throws JMSException
Sets a byte array value with the specified name into the Map.- Specified by:
setBytes
in interfaceMapMessage
- Parameters:
name
- the name of the byte arrayvalue
- the byte array value to set in the Map; the array is copied so that the value forname
will not be altered by future modifications- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.NullPointerException
- if the name is null, or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setBytes
public void setBytes(String name, byte[] value, int offset, int length) throws JMSException
Sets a portion of the byte array value with the specified name into the Map.- Specified by:
setBytes
in interfaceMapMessage
- Parameters:
name
- the name of the byte arrayvalue
- the byte array value to set in the Mapoffset
- the initial offset within the byte arraylength
- the number of bytes to use- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageNotWriteableException
- if the message is in read-only mode.
-
setObject
public void setObject(String name, Object value) throws JMSException
Sets an object value with the specified name into the Map.This method works only for the objectified primitive object types (
Integer
,Double
,Long
...),String
objects, and byte arrays.- Specified by:
setObject
in interfaceMapMessage
- Parameters:
name
- the name of the Java objectvalue
- the Java object value to set in the Map- Throws:
JMSException
- if the JMS provider fails to write the message due to some internal error.IllegalArgumentException
- if the name is null or if the name is an empty string.MessageFormatException
- if the object is invalid.MessageNotWriteableException
- if the message is in read-only mode.
-
itemExists
public boolean itemExists(String name) throws JMSException
Indicates whether an item exists in thisMapMessage
object.- Specified by:
itemExists
in interfaceMapMessage
- Parameters:
name
- the name of the item to test- Returns:
- true if the item exists
- Throws:
JMSException
- if the JMS provider fails to determine if the item exists due to some internal error.
-
compress
public void compress() throws IOException
- Overrides:
compress
in classMessage
- Throws:
IOException
-
getContentMap
public Map<String,Object> getContentMap() throws JMSException
- Throws:
JMSException
-
-