com.amazonaws.services.codestar.model.ListUserProfilesResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-codestar Show documentation
/*
* Copyright 2016-2021 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.codestar.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListUserProfilesResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* All the user profiles configured in AWS CodeStar for an AWS account.
*
*/
private java.util.List userProfiles;
/**
*
* The continuation token to use when requesting the next set of results, if there are more results to be returned.
*
*/
private String nextToken;
/**
*
* All the user profiles configured in AWS CodeStar for an AWS account.
*
*
* @return All the user profiles configured in AWS CodeStar for an AWS account.
*/
public java.util.List getUserProfiles() {
return userProfiles;
}
/**
*
* All the user profiles configured in AWS CodeStar for an AWS account.
*
*
* @param userProfiles
* All the user profiles configured in AWS CodeStar for an AWS account.
*/
public void setUserProfiles(java.util.Collection userProfiles) {
if (userProfiles == null) {
this.userProfiles = null;
return;
}
this.userProfiles = new java.util.ArrayList(userProfiles);
}
/**
*
* All the user profiles configured in AWS CodeStar for an AWS account.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setUserProfiles(java.util.Collection)} or {@link #withUserProfiles(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param userProfiles
* All the user profiles configured in AWS CodeStar for an AWS account.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListUserProfilesResult withUserProfiles(UserProfileSummary... userProfiles) {
if (this.userProfiles == null) {
setUserProfiles(new java.util.ArrayList(userProfiles.length));
}
for (UserProfileSummary ele : userProfiles) {
this.userProfiles.add(ele);
}
return this;
}
/**
*
* All the user profiles configured in AWS CodeStar for an AWS account.
*
*
* @param userProfiles
* All the user profiles configured in AWS CodeStar for an AWS account.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListUserProfilesResult withUserProfiles(java.util.Collection userProfiles) {
setUserProfiles(userProfiles);
return this;
}
/**
*
* The continuation token to use when requesting the next set of results, if there are more results to be returned.
*
*
* @param nextToken
* The continuation token to use when requesting the next set of results, if there are more results to be
* returned.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* The continuation token to use when requesting the next set of results, if there are more results to be returned.
*
*
* @return The continuation token to use when requesting the next set of results, if there are more results to be
* returned.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* The continuation token to use when requesting the next set of results, if there are more results to be returned.
*
*
* @param nextToken
* The continuation token to use when requesting the next set of results, if there are more results to be
* returned.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListUserProfilesResult withNextToken(String nextToken) {
setNextToken(nextToken);
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 (getUserProfiles() != null)
sb.append("UserProfiles: ").append(getUserProfiles()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListUserProfilesResult == false)
return false;
ListUserProfilesResult other = (ListUserProfilesResult) obj;
if (other.getUserProfiles() == null ^ this.getUserProfiles() == null)
return false;
if (other.getUserProfiles() != null && other.getUserProfiles().equals(this.getUserProfiles()) == false)
return false;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getUserProfiles() == null) ? 0 : getUserProfiles().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
return hashCode;
}
@Override
public ListUserProfilesResult clone() {
try {
return (ListUserProfilesResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}