| java.lang.Object com.rift.coad.daemon.messageservice.message.MessageImpl com.rift.coad.daemon.messageservice.message.TextMessageImpl
TextMessageImpl | public class TextMessageImpl extends MessageImpl implements TextMessage(Code) | | The implementation of the text message object.
author: Brett Chaldecott |
Constructor Summary | |
public | TextMessageImpl(String messageId, String user, String sessionId, List principals, int status) | public | TextMessageImpl(String messageId, Date created, int retries, Date processedDate, String user, String sessionId, List principals, String from, int messageType, int status) Creates a new instance of MessageImpl. |
Method Summary | |
public void | clearBody() This clears the body of the message. | public String | getTextBody() This method returns the text body of this message. | public void | setTextBody(String text) This method sets the text body of a text message. |
TextMessageImpl | public TextMessageImpl(String messageId, String user, String sessionId, List principals, int status)(Code) | | Creates a new instance of TextMessageImpl
Parameters: messageId - The unique identifier for this message. Parameters: user - The user of this message. Parameters: sessionId - The id of this user session. Parameters: principals - The list of principals assigned to this message. Parameters: status - The status of this message. |
TextMessageImpl | public TextMessageImpl(String messageId, Date created, int retries, Date processedDate, String user, String sessionId, List principals, String from, int messageType, int status)(Code) | | Creates a new instance of MessageImpl.
Parameters: messageId - The id of the message that was created. Parameters: create - The created time stamp. Parameters: retries - The number of retries of this message. Parameters: processedDate - The last time this message was processed. Parameters: user - The name of the user. Parameters: sessionId - The id of this user session. Parameters: principals - The list of principals. Parameters: from - The from address of the message. Parameters: messageType - The type of message being used. Parameters: status - The status of this message. |
Methods inherited from com.rift.coad.daemon.messageservice.message.MessageImpl | public void acknowledge() throws MessageServiceException(Code)(Java Doc) public void addError(int level, String msg) throws MessageServiceException(Code)(Java Doc) public void addError(MessageError error)(Code)(Java Doc) abstract public void clearBody() throws MessageServiceException(Code)(Java Doc) public void clearProperties() throws MessageServiceException(Code)(Java Doc) public Object clone() throws CloneNotSupportedException(Code)(Java Doc) public boolean containsProperty(String name) throws MessageServiceException(Code)(Java Doc) public boolean getBooleanProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public byte getByteProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public String getCorrelationId() throws MessageServiceException(Code)(Java Doc) public Date getCreated()(Code)(Java Doc) public double getDoubleProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public List getErrors() throws MessageServiceException(Code)(Java Doc) public float getFloatProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public String getFrom() throws MessageServiceException(Code)(Java Doc) public int getIntProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public long getLongProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public String getMessageCreater()(Code)(Java Doc) public String getMessageId()(Code)(Java Doc) public List getMessagePrincipals()(Code)(Java Doc) public int getMessageType()(Code)(Java Doc) public Date getNextProcessDate()(Code)(Java Doc) public Object getObjectProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public int getPriority()(Code)(Java Doc) public Date getProcessedDate()(Code)(Java Doc) public Enumeration getPropertyNames() throws MessageServiceException(Code)(Java Doc) public Object getPropertyValue(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public boolean getReply() throws MessageServiceException(Code)(Java Doc) public String getReplyNamedQueue() throws MessageServiceException(Code)(Java Doc) public String getReplyTo() throws MessageServiceException(Code)(Java Doc) public int getRetries()(Code)(Java Doc) public String[] getServices() throws MessageServiceException, InvalidMessageType(Code)(Java Doc) public String getSessionId()(Code)(Java Doc) public int getState() throws MessageServiceException(Code)(Java Doc) public String getStringProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public String getTarget() throws MessageServiceException, InvalidMessageType(Code)(Java Doc) public String getTargetNamedQueue() throws MessageServiceException(Code)(Java Doc) public void incrementRetries()(Code)(Java Doc) public boolean isAcknowledged() throws MessageServiceException(Code)(Java Doc) public boolean propertyExists(String name) throws MessageServiceException(Code)(Java Doc) public void setBooleanProperty(String name, boolean value) throws MessageServiceException(Code)(Java Doc) public void setByteProperty(String name, byte value) throws MessageServiceException(Code)(Java Doc) public void setCorrelationId(String id) throws MessageServiceException(Code)(Java Doc) public void setDoubleProperty(String name, double value) throws MessageServiceException(Code)(Java Doc) public void setFloatProperty(String name, float value) throws MessageServiceException(Code)(Java Doc) public void setFrom(String from) throws MessageServiceException(Code)(Java Doc) public void setIntProperty(String name, int value) throws MessageServiceException(Code)(Java Doc) public void setLongProperty(String name, long value) throws MessageServiceException(Code)(Java Doc) public void setMessageId(String messageId)(Code)(Java Doc) public void setMessagePrincipals(List principals)(Code)(Java Doc) public void setMessageType(int messageType)(Code)(Java Doc) public void setNextProcessDate(Date nextProcessDate)(Code)(Java Doc) public void setObjectProperty(String name, Object value) throws MessageServiceException(Code)(Java Doc) public void setPriority(int priority) throws MessageServiceException(Code)(Java Doc) public void setProcessedDate(Date processedDate)(Code)(Java Doc) public void setPropertyValue(String name, Object value) throws MessageServiceException, InvalidProperty(Code)(Java Doc) public void setReply(boolean value) throws MessageServiceException(Code)(Java Doc) public void setReplyNamedQueue(String name) throws MessageServiceException(Code)(Java Doc) public void setReplyTo(String replyTo) throws MessageServiceException(Code)(Java Doc) public void setServices(String[] services) throws MessageServiceException, InvalidMessageType(Code)(Java Doc) public void setState(int status) throws MessageServiceException(Code)(Java Doc) public void setStringProperty(String name, String value) throws MessageServiceException(Code)(Java Doc) public void setTarget(String target) throws MessageServiceException, InvalidMessageType(Code)(Java Doc) public void setTargetNamedQueue(String name) throws MessageServiceException(Code)(Java Doc)
|
|
|