BEA Systems, Inc.

BEA WebLogic Server 9.0 API Reference


weblogic.jms.extensions
Class JMSMessageInfo

java.lang.Object
  extended byweblogic.messaging.runtime.MessageInfo
      extended byweblogic.jms.extensions.JMSMessageInfo

public class JMSMessageInfo
extends weblogic.messaging.runtime.MessageInfo

This class encapsulates a JMS message and meta-data that describes the context of the message as it exists in the server at a given point in time. Instances of this class are created by the JMX message management APIs that are used for the browsing and manipulation of messages. These APIs return a CompositeData representation of this object. This object may also be used by a management client to import a message.

See Also:
CompositeData, JMSDestinationRuntimeMBean, JMSServerRuntimeMBean, JMSDurableSubscriberRuntimeMBean
Copyright © 2005 BEA Systems, Inc. All Rights Reserved.

Field Summary
 
Fields inherited from class weblogic.messaging.runtime.MessageInfo
consumerID, handle, ITEM_CONSUMER_ID, ITEM_HANDLE, ITEM_SEQUENCE_NUMBER, ITEM_STATE, ITEM_XID_STRING, openItemDescriptions, openItemNames, openItemTypes, sequenceNumber, state, STATE_DELAYED, STATE_EXPIRED, STATE_ORDERED, STATE_PAUSED, STATE_RECEIVE, STATE_REDELIVERY_COUNT_EXCEEDED, STATE_SEND, STATE_TRANSACTION, STATE_VISIBLE, stateString, xidString
 
Constructor Summary
JMSMessageInfo(CompositeData cd)
           Creates an instance from a CompositeData represenation.
JMSMessageInfo(long handle, int state, String xidString, long sequenceNumber, String consumerID, WLMessage message, String destinationName, boolean bodyIncluded)
           Construct an instance with the specified attributes.
JMSMessageInfo(WLMessage message)
           Constructs an object with only the WLMessage attribute.
 
Method Summary
protected  Map getCompositeDataMap()
           
 String getDestinationName()
          Returns the name of the destination that is hosting the message.
 WLMessage getMessage()
           Returns the JMS message attribute.
 long getMessageSize()
          Returns the size of the message including the body.
protected  void initOpenInfo()
           
 boolean isBodyIncluded()
          Returns true if the message body is included in the CompositeData representation.
protected  void readCompositeData(CompositeData cd)
           
 void setBodyIncluded(boolean bodyIncluded)
          Sets the BodyIncluded attribute.
 void setDestinationName(String destinationName)
          Sets the DestinationName attribute.
 void setMessage(WLMessage message)
          Sets the message attribute.
 void setMessageSize(long messageSize)
          Sets the MessageSize attribute.
 
Methods inherited from class weblogic.messaging.runtime.MessageInfo
getCompositeType, getConsumerID, getHandle, getSequenceNumber, getState, getStateString, getStateString, getXidString, setConsumerID, setHandle, setSequenceNumber, setState, setXidString, toCompositeData
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JMSMessageInfo

public JMSMessageInfo(CompositeData cd)
               throws OpenDataException

Creates an instance from a CompositeData represenation.

Throws:
OpenDataException - An error occurred while extracting attributes from the CompositeData representation.

JMSMessageInfo

public JMSMessageInfo(long handle,
                      int state,
                      String xidString,
                      long sequenceNumber,
                      String consumerID,
                      WLMessage message,
                      String destinationName,
                      boolean bodyIncluded)

Construct an instance with the specified attributes.


JMSMessageInfo

public JMSMessageInfo(WLMessage message)

Constructs an object with only the WLMessage attribute. The resulting CompositeData is intended for use with the message import feature. This constructor will include the message body in the CompositeData representation.

See Also:
JMSMessageManagementRuntimeMBean.importMessages(CompositeData[], Boolean)
Method Detail

getCompositeDataMap

protected Map getCompositeDataMap()
                           throws OpenDataException
Throws:
OpenDataException

getDestinationName

public String getDestinationName()
Returns the name of the destination that is hosting the message. This attribute is used to differentiate messages that are returned from cursors that aggregate messages across destinations.

Returns:
the destination name.

getMessage

public WLMessage getMessage()

Returns the JMS message attribute. Note that if the JMSMessageInfo instance was created from a CompositeData representation where the bodyIncluded attribute is set to false, the message type returned may differ from the original message type.

Returns:
the JMS message.

getMessageSize

public long getMessageSize()
Returns the size of the message including the body.

Returns:
the size of the message in bytes.

initOpenInfo

protected void initOpenInfo()

isBodyIncluded

public boolean isBodyIncluded()
Returns true if the message body is included in the CompositeData representation.

Returns:
the value of the BodyIncluded attribute.

readCompositeData

protected void readCompositeData(CompositeData cd)
                          throws OpenDataException
Throws:
OpenDataException

setBodyIncluded

public void setBodyIncluded(boolean bodyIncluded)
Sets the BodyIncluded attribute.

Parameters:
bodyIncluded - Indicates whether to include the message body in the CompositeData representation.

setDestinationName

public void setDestinationName(String destinationName)
Sets the DestinationName attribute.

Parameters:
destinationName - The destination name.

setMessage

public void setMessage(WLMessage message)
Sets the message attribute.

Parameters:
message - A JMS message.

setMessageSize

public void setMessageSize(long messageSize)
Sets the MessageSize attribute.

Parameters:
messageSize - The message size in bytes.

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs90
Copyright 2005 BEA Systems Inc.