Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public static class SQSMessage implements Serializable, Cloneable {

private String md5OfMessageAttributes;

private String eventSourceArn;
private String eventSourceARN;

private String eventSource;

Expand Down Expand Up @@ -303,14 +303,14 @@ public void setMd5OfMessageAttributes(String md5OfMessageAttributes) {
* Gets the Event Source ARN
* @return eventSourceArn
*/
public String getEventSourceArn() { return eventSourceArn; }
public String getEventSourceARN() { return eventSourceARN; }

/**
* Sets the Event Source ARN
* @param eventSourceArn
* @param eventSourceARN
**/
public void setEventSourceArn(String eventSourceArn) {
this.eventSourceArn = eventSourceArn;
public void setEventSourceARN(String eventSourceARN) {
this.eventSourceARN = eventSourceARN;
}

/**
Expand Down Expand Up @@ -386,8 +386,8 @@ public String toString() {
sb.append("messageId: ").append(getMessageId()).append(",");
if (getReceiptHandle() != null)
sb.append("receiptHandle: ").append(getReceiptHandle()).append(",");
if (getEventSourceArn() != null)
sb.append("eventSourceARN: ").append(getEventSourceArn()).append(",");
if (getEventSourceARN() != null)
sb.append("eventSourceARN: ").append(getEventSourceARN()).append(",");
if (getEventSource() != null)
sb.append("eventSource: ").append(getEventSource()).append(",");
if (getAwsRegion() != null)
Expand Down Expand Up @@ -423,9 +423,9 @@ public boolean equals(Object obj) {
return false;
if (other.getReceiptHandle() != null && other.getReceiptHandle().equals(this.getReceiptHandle()) == false)
return false;
if (other.getEventSourceArn() == null ^ this.getEventSourceArn() == null)
if (other.getEventSourceARN() == null ^ this.getEventSourceARN() == null)
return false;
if (other.getEventSourceArn() != null && other.getEventSourceArn().equals(this.getEventSourceArn()) == false)
if (other.getEventSourceARN() != null && other.getEventSourceARN().equals(this.getEventSourceARN()) == false)
return false;
if (other.getEventSource() == null ^ this.getEventSource() == null)
return false;
Expand Down Expand Up @@ -468,7 +468,7 @@ public int hashCode() {
hashCode = prime * hashCode + ((getMessageAttributes() == null) ? 0 : getMessageAttributes().hashCode());
hashCode = prime * hashCode + ((getMessageId() == null) ? 0 : getMessageId().hashCode());
hashCode = prime * hashCode + ((getReceiptHandle() == null) ? 0 : getReceiptHandle().hashCode());
hashCode = prime * hashCode + ((getEventSourceArn() == null) ? 0 : getEventSourceArn().hashCode());
hashCode = prime * hashCode + ((getEventSourceARN() == null) ? 0 : getEventSourceARN().hashCode());
hashCode = prime * hashCode + ((getEventSource() == null) ? 0 : getEventSource().hashCode());
hashCode = prime * hashCode + ((getAwsRegion() == null) ? 0 : getAwsRegion().hashCode());
hashCode = prime * hashCode + ((getBody() == null) ? 0 : getBody().hashCode());
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.