com.amazonaws.services.iotwireless.model.ListQueuedMessagesResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-iotwireless Show documentation
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.iotwireless.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListQueuedMessagesResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* To retrieve the next set of results, the nextToken
value from a previous response; otherwise
* null to receive the first set of results.
*
*/
private String nextToken;
/**
*
* The messages in the downlink queue.
*
*/
private java.util.List downlinkQueueMessagesList;
/**
*
* To retrieve the next set of results, the nextToken
value from a previous response; otherwise
* null to receive the first set of results.
*
*
* @param nextToken
* To retrieve the next set of results, the nextToken
value from a previous response; otherwise
* null to receive the first set of results.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* To retrieve the next set of results, the nextToken
value from a previous response; otherwise
* null to receive the first set of results.
*
*
* @return To retrieve the next set of results, the nextToken
value from a previous response; otherwise
* null to receive the first set of results.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* To retrieve the next set of results, the nextToken
value from a previous response; otherwise
* null to receive the first set of results.
*
*
* @param nextToken
* To retrieve the next set of results, the nextToken
value from a previous response; otherwise
* null to receive the first set of results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListQueuedMessagesResult withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
*
* The messages in the downlink queue.
*
*
* @return The messages in the downlink queue.
*/
public java.util.List getDownlinkQueueMessagesList() {
return downlinkQueueMessagesList;
}
/**
*
* The messages in the downlink queue.
*
*
* @param downlinkQueueMessagesList
* The messages in the downlink queue.
*/
public void setDownlinkQueueMessagesList(java.util.Collection downlinkQueueMessagesList) {
if (downlinkQueueMessagesList == null) {
this.downlinkQueueMessagesList = null;
return;
}
this.downlinkQueueMessagesList = new java.util.ArrayList(downlinkQueueMessagesList);
}
/**
*
* The messages in the downlink queue.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setDownlinkQueueMessagesList(java.util.Collection)} or
* {@link #withDownlinkQueueMessagesList(java.util.Collection)} if you want to override the existing values.
*
*
* @param downlinkQueueMessagesList
* The messages in the downlink queue.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListQueuedMessagesResult withDownlinkQueueMessagesList(DownlinkQueueMessage... downlinkQueueMessagesList) {
if (this.downlinkQueueMessagesList == null) {
setDownlinkQueueMessagesList(new java.util.ArrayList(downlinkQueueMessagesList.length));
}
for (DownlinkQueueMessage ele : downlinkQueueMessagesList) {
this.downlinkQueueMessagesList.add(ele);
}
return this;
}
/**
*
* The messages in the downlink queue.
*
*
* @param downlinkQueueMessagesList
* The messages in the downlink queue.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListQueuedMessagesResult withDownlinkQueueMessagesList(java.util.Collection downlinkQueueMessagesList) {
setDownlinkQueueMessagesList(downlinkQueueMessagesList);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken()).append(",");
if (getDownlinkQueueMessagesList() != null)
sb.append("DownlinkQueueMessagesList: ").append(getDownlinkQueueMessagesList());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListQueuedMessagesResult == false)
return false;
ListQueuedMessagesResult other = (ListQueuedMessagesResult) obj;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
if (other.getDownlinkQueueMessagesList() == null ^ this.getDownlinkQueueMessagesList() == null)
return false;
if (other.getDownlinkQueueMessagesList() != null && other.getDownlinkQueueMessagesList().equals(this.getDownlinkQueueMessagesList()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
hashCode = prime * hashCode + ((getDownlinkQueueMessagesList() == null) ? 0 : getDownlinkQueueMessagesList().hashCode());
return hashCode;
}
@Override
public ListQueuedMessagesResult clone() {
try {
return (ListQueuedMessagesResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}