public final class

ChangeMessageVisibilityBatchResult

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

Class Overview

For each message in the batch, the response contains a ChangeMessageVisibilityBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.

Summary

Constants
long serialVersionUID
Fields
private final List<BatchResultErrorEntry> failed A list of BatchResultErrorEntry items.
private final List<ChangeMessageVisibilityBatchResultEntry> successful A list of ChangeMessageVisibilityBatchResultEntry items.
Public Constructors
ChangeMessageVisibilityBatchResult(List<BatchResultErrorEntry> failed, List<ChangeMessageVisibilityBatchResultEntry> successful)
Public Methods
final boolean equals(Object o)
List<BatchResultErrorEntry> getFailed()
A list of BatchResultErrorEntry items.
List<ChangeMessageVisibilityBatchResultEntry> getSuccessful()
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: 200306085130817029 (0x02c7a152ba924e05)

Fields

private final List<BatchResultErrorEntry> failed

A list of BatchResultErrorEntry items.

Public Constructors

public ChangeMessageVisibilityBatchResult (List<BatchResultErrorEntry> failed, List<ChangeMessageVisibilityBatchResultEntry> successful)

Parameters
failed
successful

Public Methods

public final boolean equals (Object o)

Parameters
o

public List<BatchResultErrorEntry> getFailed ()

A list of BatchResultErrorEntry items.

Returns

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