public final class

DeleteMessageBatchRequestEntry

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

Class Overview

Encloses a receipt handle and an identifier for it.

Summary

Constants
long serialVersionUID
Fields
private final String id An identifier for this particular receipt handle.
private final String receiptHandle A receipt handle.
Public Constructors
DeleteMessageBatchRequestEntry(String id, String receiptHandle)
Constructs a new DeleteMessageBatchRequestEntry object.
Public Methods
final boolean equals(Object obj)
String getId()
An identifier for this particular receipt handle.
String getReceiptHandle()
A receipt handle.
final 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: 7843897881967927145 (0x6cdb1f909d231f69)

Fields

private final String id

An identifier for this particular receipt handle. This is used to communicate the result. Note that the Ids of a batch request need to be unique within the request.

private final String receiptHandle

A receipt handle.

Public Constructors

public DeleteMessageBatchRequestEntry (String id, String receiptHandle)

Constructs a new DeleteMessageBatchRequestEntry object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.

Parameters
id An identifier for this particular receipt handle. This is used to communicate the result. Note that the Ids of a batch request need to be unique within the request.
receiptHandle A receipt handle.

Public Methods

public final boolean equals (Object obj)

Parameters
obj

public String getId ()

An identifier for this particular receipt handle. This is used to communicate the result. Note that the Ids of a batch request need to be unique within the request.

Returns
  • An identifier for this particular receipt handle. This is used to communicate the result. Note that the Ids of a batch request need to be unique within the request.

public String getReceiptHandle ()

A receipt handle.

Returns
  • A receipt handle.

public final 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