Package org.jclouds.sqs.domain
Class Message
- java.lang.Object
-
- org.jclouds.sqs.domain.Message
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Message.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Message.Builder
builder()
boolean
equals(Object obj)
Map<String,String>
getAttributes()
Attributes of the queueString
getBody()
The message's contents (not URL encoded)String
getId()
The message's SQS-assigned ID.com.google.common.hash.HashCode
getMD5()
An MD5 digest of the non-URL-encoded message body stringString
getReceiptHandle()
A string associated with a specific instance of receiving the message.int
hashCode()
Message.Builder
toBuilder()
String
toString()
-
-
-
Method Detail
-
builder
public static Message.Builder builder()
-
toBuilder
public Message.Builder toBuilder()
-
getId
public String getId()
The message's SQS-assigned ID.
-
getBody
public String getBody()
The message's contents (not URL encoded)
-
getReceiptHandle
public String getReceiptHandle()
A string associated with a specific instance of receiving the message.
-
getMD5
public com.google.common.hash.HashCode getMD5()
An MD5 digest of the non-URL-encoded message body string
-
-