public final class

ChangeMessageVisibilityBatchRequestEntry

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

Summary

Constants
long serialVersionUID
Fields
private final String id An identifier for this particular receipt handle.
private final String receiptHandle A receipt handle.
private final Integer visibilityTimeout The new value (in seconds) for the message's visibility timeout.
Public Constructors
ChangeMessageVisibilityBatchRequestEntry(String id, String receiptHandle, Integer visibilityTimeout)
Constructs a new ChangeMessageVisibilityBatchRequestEntry object.
Public Methods
final boolean equals(Object obj)
String getId()
An identifier for this particular receipt handle.
String getReceiptHandle()
A receipt handle.
Integer getVisibilityTimeout()
The new value (in seconds) for the message's visibility timeout.
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: 6881387435746113178 (0x5f7f9969e57bb69a)

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.

private final Integer visibilityTimeout

The new value (in seconds) for the message's visibility timeout.

Public Constructors

public ChangeMessageVisibilityBatchRequestEntry (String id, String receiptHandle, Integer visibilityTimeout)

Constructs a new ChangeMessageVisibilityBatchRequestEntry 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.
visibilityTimeout

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 Integer getVisibilityTimeout ()

The new value (in seconds) for the message's visibility timeout.

Returns
  • The new value (in seconds) for the message's visibility timeout.

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