net.sf.dropboxmq.messages
Class MapMessageImpl

java.lang.Object
  extended by net.sf.dropboxmq.messages.MessageImpl
      extended by net.sf.dropboxmq.messages.MapMessageImpl
All Implemented Interfaces:
MapMessage, Message

public class MapMessageImpl
extends MessageImpl
implements MapMessage

Created: 28 Jan 2006

Version:
$Revision: 231 $, $Date: 2011-08-12 21:50:47 -0600 (Fri, 12 Aug 2011) $
Author:
Dwayne Schultz

Field Summary
 
Fields inherited from interface javax.jms.Message
DEFAULT_DELIVERY_MODE, DEFAULT_PRIORITY, DEFAULT_TIME_TO_LIVE
 
Constructor Summary
MapMessageImpl(MapMessage foreignMessage, SessionImpl session)
           
MapMessageImpl(SessionImpl session)
           
 
Method Summary
 void clearBody()
          Clears out the message body.
 boolean getBoolean(String name)
          Returns the boolean value with the specified name.
 byte getByte(String name)
          Returns the byte 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.
 double getDouble(String name)
          Returns the double value with the specified name.
 float getFloat(String name)
          Returns the float value with the specified name.
 int getInt(String name)
          Returns the int value with the specified name.
 long getLong(String name)
          Returns the long value with the specified name.
 Enumeration getMapNames()
          Returns an Enumeration of all the names in the MapMessage object.
 Object getObject(String name)
          Returns the value of the object with the specified name.
 short getShort(String name)
          Returns the short value with the specified name.
 String getString(String name)
          Returns the String value with the specified name.
 boolean itemExists(String name)
          Indicates whether an item exists in this MapMessage object.
 void read(File newMessageFile, FileSystem fileSystem)
           
 void setBoolean(String name, boolean value)
          Sets a boolean value with the specified name into the Map.
 void setByte(String name, byte value)
          Sets a byte 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 a double value with the specified name into the Map.
 void setFloat(String name, float value)
          Sets a float value with the specified name into the Map.
 void setInt(String name, int value)
          Sets an int value with the specified name into the Map.
 void setLong(String name, long value)
          Sets a long 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 a short value with the specified name into the Map.
 void setString(String name, String value)
          Sets a String value with the specified name into the Map.
 String toString()
           
 void write(File newMessageFile, FileSystem fileSystem)
           
 
Methods inherited from class net.sf.dropboxmq.messages.MessageImpl
acknowledge, checkWrite, clearProperties, convertForeignMessage, getBooleanProperty, getByteProperty, getDoubleProperty, getFloatProperty, getIntProperty, getJMSCorrelationID, getJMSCorrelationIDAsBytes, getJMSDeliveryMode, getJMSDestination, getJMSExpiration, getJMSMessageID, getJMSPriority, getJMSRedelivered, getJMSReplyTo, getJMSTimestamp, getJMSType, getLongProperty, getObjectProperty, getPropertyNames, getReadMessageFile, getSequence, getSession, getShortProperty, getStringProperty, isBodyReadOnly, isExpired, isReceived, propertyExists, setBooleanProperty, setByteProperty, setDoubleProperty, setFloatProperty, setIntProperty, setJMSCorrelationID, setJMSCorrelationIDAsBytes, setJMSDeliveryMode, setJMSDestination, setJMSExpiration, setJMSMessageID, setJMSPriority, setJMSRedelivered, setJMSReplyTo, setJMSTimestamp, setJMSType, setLongProperty, setObjectProperty, setReceived, setSequence, setSession, setShortProperty, setStringProperty, toObjectString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, 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
 

Constructor Detail

MapMessageImpl

public MapMessageImpl(SessionImpl session)

MapMessageImpl

MapMessageImpl(MapMessage foreignMessage,
               SessionImpl session)
         throws JMSException
Throws:
JMSException
Method Detail

read

public void read(File newMessageFile,
                 FileSystem fileSystem)
          throws JMSException,
                 IOException,
                 FileSystem.FileSystemException
Overrides:
read in class MessageImpl
Throws:
JMSException
IOException
FileSystem.FileSystemException

write

public void write(File newMessageFile,
                  FileSystem fileSystem)
           throws IOException,
                  JMSException,
                  FileSystem.FileSystemException
Overrides:
write in class MessageImpl
Throws:
IOException
JMSException
FileSystem.FileSystemException

getBoolean

public boolean getBoolean(String name)
                   throws JMSException
Description copied from interface: javax.jms.MapMessage
Returns the boolean value with the specified name.

Specified by:
getBoolean in interface MapMessage
Parameters:
name - the name of the boolean
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
Description copied from interface: javax.jms.MapMessage
Returns the byte value with the specified name.

Specified by:
getByte in interface MapMessage
Parameters:
name - the name of the byte
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
Description copied from interface: javax.jms.MapMessage
Returns the short value with the specified name.

Specified by:
getShort in interface MapMessage
Parameters:
name - the name of the short
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
Description copied from interface: javax.jms.MapMessage
Returns the Unicode character value with the specified name.

Specified by:
getChar in interface MapMessage
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
Description copied from interface: javax.jms.MapMessage
Returns the int value with the specified name.

Specified by:
getInt in interface MapMessage
Parameters:
name - the name of the int
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
Description copied from interface: javax.jms.MapMessage
Returns the long value with the specified name.

Specified by:
getLong in interface MapMessage
Parameters:
name - the name of the long
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
Description copied from interface: javax.jms.MapMessage
Returns the float value with the specified name.

Specified by:
getFloat in interface MapMessage
Parameters:
name - the name of the float
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
Description copied from interface: javax.jms.MapMessage
Returns the double value with the specified name.

Specified by:
getDouble in interface MapMessage
Parameters:
name - the name of the double
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
Description copied from interface: javax.jms.MapMessage
Returns the String value with the specified name.

Specified by:
getString in interface MapMessage
Parameters:
name - the name of the String
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
Description copied from interface: javax.jms.MapMessage
Returns the byte array value with the specified name.

Specified by:
getBytes in interface MapMessage
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
Description copied from interface: javax.jms.MapMessage
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 primitive settype method.

Note that byte values are returned as byte[], not Byte[].

Specified by:
getObject in interface MapMessage
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, an Integer 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 getMapNames()
                        throws JMSException
Description copied from interface: javax.jms.MapMessage
Returns an Enumeration of all the names in the MapMessage object.

Specified by:
getMapNames in interface MapMessage
Returns:
an enumeration of all the names in this MapMessage
Throws:
JMSException - if the JMS provider fails to read the message due to some internal error.

setBoolean

public void setBoolean(String name,
                       boolean value)
                throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a boolean value with the specified name into the Map.

Specified by:
setBoolean in interface MapMessage
Parameters:
name - the name of the boolean
value - the boolean value to set in the Map
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setByte

public void setByte(String name,
                    byte value)
             throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a byte value with the specified name into the Map.

Specified by:
setByte in interface MapMessage
Parameters:
name - the name of the byte
value - the byte value to set in the Map
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setShort

public void setShort(String name,
                     short value)
              throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a short value with the specified name into the Map.

Specified by:
setShort in interface MapMessage
Parameters:
name - the name of the short
value - the short value to set in the Map
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setChar

public void setChar(String name,
                    char value)
             throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a Unicode character value with the specified name into the Map.

Specified by:
setChar in interface MapMessage
Parameters:
name - the name of the Unicode character
value - 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.
MessageNotWriteableException - if the message is in read-only mode.

setInt

public void setInt(String name,
                   int value)
            throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets an int value with the specified name into the Map.

Specified by:
setInt in interface MapMessage
Parameters:
name - the name of the int
value - the int value to set in the Map
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setLong

public void setLong(String name,
                    long value)
             throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a long value with the specified name into the Map.

Specified by:
setLong in interface MapMessage
Parameters:
name - the name of the long
value - the long value to set in the Map
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setFloat

public void setFloat(String name,
                     float value)
              throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a float value with the specified name into the Map.

Specified by:
setFloat in interface MapMessage
Parameters:
name - the name of the float
value - the float value to set in the Map
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setDouble

public void setDouble(String name,
                      double value)
               throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a double value with the specified name into the Map.

Specified by:
setDouble in interface MapMessage
Parameters:
name - the name of the double
value - the double value to set in the Map
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setString

public void setString(String name,
                      String value)
               throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a String value with the specified name into the Map.

Specified by:
setString in interface MapMessage
Parameters:
name - the name of the String
value - the String value to set in the Map
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setBytes

public void setBytes(String name,
                     byte[] value)
              throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a byte array value with the specified name into the Map.

Specified by:
setBytes in interface MapMessage
Parameters:
name - the name of the byte array
value - the byte array value to set in the Map; the array is copied so that the value for name will not be altered by future modifications
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setBytes

public void setBytes(String name,
                     byte[] value,
                     int offset,
                     int length)
              throws JMSException
Description copied from interface: javax.jms.MapMessage
Sets a portion of the byte array value with the specified name into the Map.

Specified by:
setBytes in interface MapMessage
Parameters:
name - the name of the byte array
value - the byte array value to set in the Map
offset - the initial offset within the byte array
length - the number of bytes to use
Throws:
JMSException - if the JMS provider fails to write the message due to some internal error.
MessageNotWriteableException - if the message is in read-only mode.

setObject

public void setObject(String name,
                      Object value)
               throws JMSException
Description copied from interface: javax.jms.MapMessage
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 interface MapMessage
Parameters:
name - the name of the Java object
value - 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.
MessageFormatException - if the object is invalid.
MessageNotWriteableException - if the message is in read-only mode.

itemExists

public boolean itemExists(String name)
                   throws JMSException
Description copied from interface: javax.jms.MapMessage
Indicates whether an item exists in this MapMessage object.

Specified by:
itemExists in interface MapMessage
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.

clearBody

public void clearBody()
               throws JMSException
Description copied from interface: javax.jms.Message
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 interface Message
Overrides:
clearBody in class MessageImpl
Throws:
JMSException - if the JMS provider fails to clear the message body due to some internal error.

toString

public String toString()
Overrides:
toString in class MessageImpl