com.amazonaws.services.cognitosync.model.PushSync Maven / Gradle / Ivy
Show all versions of aws-sdk-android Show documentation
/*
* Copyright 2010-2015 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.cognitosync.model;
import java.io.Serializable;
/**
* Push Sync
*/
public class PushSync implements Serializable {
private com.amazonaws.internal.ListWithAutoConstructFlag applicationArns;
private String roleArn;
/**
* Returns the value of the ApplicationArns property for this object.
*
* @return The value of the ApplicationArns property for this object.
*/
public java.util.List getApplicationArns() {
if (applicationArns == null) {
applicationArns = new com.amazonaws.internal.ListWithAutoConstructFlag();
applicationArns.setAutoConstruct(true);
}
return applicationArns;
}
/**
* Sets the value of the ApplicationArns property for this object.
*
* @param applicationArns The new value for the ApplicationArns property for this object.
*/
public void setApplicationArns(java.util.Collection applicationArns) {
if (applicationArns == null) {
this.applicationArns = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag applicationArnsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(applicationArns.size());
applicationArnsCopy.addAll(applicationArns);
this.applicationArns = applicationArnsCopy;
}
/**
* Sets the value of the ApplicationArns property for this object.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param applicationArns The new value for the ApplicationArns property for this object.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public PushSync withApplicationArns(String... applicationArns) {
if (getApplicationArns() == null) setApplicationArns(new java.util.ArrayList(applicationArns.length));
for (String value : applicationArns) {
getApplicationArns().add(value);
}
return this;
}
/**
* Sets the value of the ApplicationArns property for this object.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param applicationArns The new value for the ApplicationArns property for this object.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public PushSync withApplicationArns(java.util.Collection applicationArns) {
if (applicationArns == null) {
this.applicationArns = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag applicationArnsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(applicationArns.size());
applicationArnsCopy.addAll(applicationArns);
this.applicationArns = applicationArnsCopy;
}
return this;
}
/**
* Returns the value of the RoleArn property for this object.
*
* Constraints:
* Length: 20 - 2048
* Pattern: arn:aws:iam::\d+:role/.*
*
* @return The value of the RoleArn property for this object.
*/
public String getRoleArn() {
return roleArn;
}
/**
* Sets the value of the RoleArn property for this object.
*
* Constraints:
* Length: 20 - 2048
* Pattern: arn:aws:iam::\d+:role/.*
*
* @param roleArn The new value for the RoleArn property for this object.
*/
public void setRoleArn(String roleArn) {
this.roleArn = roleArn;
}
/**
* Sets the value of the RoleArn property for this object.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 20 - 2048
* Pattern: arn:aws:iam::\d+:role/.*
*
* @param roleArn The new value for the RoleArn property for this object.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public PushSync withRoleArn(String roleArn) {
this.roleArn = roleArn;
return this;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getApplicationArns() != null) sb.append("ApplicationArns: " + getApplicationArns() + ",");
if (getRoleArn() != null) sb.append("RoleArn: " + getRoleArn() );
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getApplicationArns() == null) ? 0 : getApplicationArns().hashCode());
hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof PushSync == false) return false;
PushSync other = (PushSync)obj;
if (other.getApplicationArns() == null ^ this.getApplicationArns() == null) return false;
if (other.getApplicationArns() != null && other.getApplicationArns().equals(this.getApplicationArns()) == false) return false;
if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false;
if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false) return false;
return true;
}
}