public final class

SendMessageResult

extends Object
implements Serializable
java.lang.Object
   ↳ org.mule.modules.sqs.model.SendMessageResult

Class Overview

The MD5OfMessageBody and MessageId elements.

Summary

Constants
long serialVersionUID
Fields
private final String mD5OfMessageAttributes An MD5 digest of the non-URL-encoded message attribute string.
private final String mD5OfMessageBody An MD5 digest of the non-URL-encoded message body string.
private final String messageId An element containing the message ID of the message sent to the queue.
Public Constructors
SendMessageResult(String mD5OfMessageAttributes, String mD5OfMessageBody, String messageId)
Public Methods
boolean equals(Object o)
String getMD5OfMessageAttributes()
An MD5 digest of the non-URL-encoded message attribute string.
String getMD5OfMessageBody()
An MD5 digest of the non-URL-encoded message body string.
String getMessageId()
An element containing the message ID of the message sent to the queue.
int hashCode()
String toString()
Returns a string representation of this object; useful for testing and debugging.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

private static final long serialVersionUID

Constant Value: -3553562641340815153 (0xceaf359af3c828cf)

Fields

private final String mD5OfMessageAttributes

An MD5 digest of the non-URL-encoded message attribute string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

private final String mD5OfMessageBody

An MD5 digest of the non-URL-encoded message body string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

private final String messageId

An element containing the message ID of the message sent to the queue. For more information, see Queue and Message Identifiers in the Amazon SQS Developer Guide.

Public Constructors

public SendMessageResult (String mD5OfMessageAttributes, String mD5OfMessageBody, String messageId)

Parameters
mD5OfMessageAttributes
mD5OfMessageBody
messageId

Public Methods

public boolean equals (Object o)

Parameters
o

public String getMD5OfMessageAttributes ()

An MD5 digest of the non-URL-encoded message attribute string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

Returns
  • An MD5 digest of the non-URL-encoded message attribute string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

public String getMD5OfMessageBody ()

An MD5 digest of the non-URL-encoded message body string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

Returns
  • An MD5 digest of the non-URL-encoded message body string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to http://www.faqs.org/rfcs/rfc1321.html.

public String getMessageId ()

An element containing the message ID of the message sent to the queue. For more information, see Queue and Message Identifiers in the Amazon SQS Developer Guide.

Returns
  • An element containing the message ID of the message sent to the queue. For more information, see Queue and Message Identifiers in the Amazon SQS Developer Guide.

public int hashCode ()

public String toString ()

Returns a string representation of this object; useful for testing and debugging.

Returns
  • A string representation of this object.
See Also