/* * Copyright 2010-2016 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.cognitoidentityprovider.model; import java.io.Serializable; import com.amazonaws.AmazonWebServiceRequest; /** * <p> * Registers the user in the specified user pool and creates a user name, * password, and user attributes. * </p> */ public class SignUpRequest extends AmazonWebServiceRequest implements Serializable { /** * <p> * The ID of the client associated with the user pool. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\w+]+<br/> */ private String clientId; /** * <p> * A keyed-hash message authentication code (HMAC) calculated using the * secret key of a user pool client and username plus the client ID in the * message. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\w+=/]+<br/> */ private String secretHash; /** * <p> * The user name of the user you wish to register. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\p{L}\p{M}\p{S}\p{N}\p{P}]+<br/> */ private String username; /** * <p> * The password of the user you wish to register. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>6 - 256<br/> * <b>Pattern: </b>[\S]+<br/> */ private String password; /** * <p> * An array of name-value pairs representing user attributes. * </p> */ private java.util.List<AttributeType> userAttributes; /** * <p> * The validation data in the request to register a user. * </p> */ private java.util.List<AttributeType> validationData; /** * <p> * The ID of the client associated with the user pool. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\w+]+<br/> * * @return <p> * The ID of the client associated with the user pool. * </p> */ public String getClientId() { return clientId; } /** * <p> * The ID of the client associated with the user pool. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\w+]+<br/> * * @param clientId <p> * The ID of the client associated with the user pool. * </p> */ public void setClientId(String clientId) { this.clientId = clientId; } /** * <p> * The ID of the client associated with the user pool. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\w+]+<br/> * * @param clientId <p> * The ID of the client associated with the user pool. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public SignUpRequest withClientId(String clientId) { this.clientId = clientId; return this; } /** * <p> * A keyed-hash message authentication code (HMAC) calculated using the * secret key of a user pool client and username plus the client ID in the * message. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\w+=/]+<br/> * * @return <p> * A keyed-hash message authentication code (HMAC) calculated using * the secret key of a user pool client and username plus the client * ID in the message. * </p> */ public String getSecretHash() { return secretHash; } /** * <p> * A keyed-hash message authentication code (HMAC) calculated using the * secret key of a user pool client and username plus the client ID in the * message. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\w+=/]+<br/> * * @param secretHash <p> * A keyed-hash message authentication code (HMAC) calculated * using the secret key of a user pool client and username plus * the client ID in the message. * </p> */ public void setSecretHash(String secretHash) { this.secretHash = secretHash; } /** * <p> * A keyed-hash message authentication code (HMAC) calculated using the * secret key of a user pool client and username plus the client ID in the * message. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\w+=/]+<br/> * * @param secretHash <p> * A keyed-hash message authentication code (HMAC) calculated * using the secret key of a user pool client and username plus * the client ID in the message. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public SignUpRequest withSecretHash(String secretHash) { this.secretHash = secretHash; return this; } /** * <p> * The user name of the user you wish to register. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\p{L}\p{M}\p{S}\p{N}\p{P}]+<br/> * * @return <p> * The user name of the user you wish to register. * </p> */ public String getUsername() { return username; } /** * <p> * The user name of the user you wish to register. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\p{L}\p{M}\p{S}\p{N}\p{P}]+<br/> * * @param username <p> * The user name of the user you wish to register. * </p> */ public void setUsername(String username) { this.username = username; } /** * <p> * The user name of the user you wish to register. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 128<br/> * <b>Pattern: </b>[\p{L}\p{M}\p{S}\p{N}\p{P}]+<br/> * * @param username <p> * The user name of the user you wish to register. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public SignUpRequest withUsername(String username) { this.username = username; return this; } /** * <p> * The password of the user you wish to register. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>6 - 256<br/> * <b>Pattern: </b>[\S]+<br/> * * @return <p> * The password of the user you wish to register. * </p> */ public String getPassword() { return password; } /** * <p> * The password of the user you wish to register. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>6 - 256<br/> * <b>Pattern: </b>[\S]+<br/> * * @param password <p> * The password of the user you wish to register. * </p> */ public void setPassword(String password) { this.password = password; } /** * <p> * The password of the user you wish to register. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>6 - 256<br/> * <b>Pattern: </b>[\S]+<br/> * * @param password <p> * The password of the user you wish to register. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public SignUpRequest withPassword(String password) { this.password = password; return this; } /** * <p> * An array of name-value pairs representing user attributes. * </p> * * @return <p> * An array of name-value pairs representing user attributes. * </p> */ public java.util.List<AttributeType> getUserAttributes() { return userAttributes; } /** * <p> * An array of name-value pairs representing user attributes. * </p> * * @param userAttributes <p> * An array of name-value pairs representing user attributes. * </p> */ public void setUserAttributes(java.util.Collection<AttributeType> userAttributes) { if (userAttributes == null) { this.userAttributes = null; return; } this.userAttributes = new java.util.ArrayList<AttributeType>(userAttributes); } /** * <p> * An array of name-value pairs representing user attributes. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param userAttributes <p> * An array of name-value pairs representing user attributes. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public SignUpRequest withUserAttributes(AttributeType... userAttributes) { if (getUserAttributes() == null) { this.userAttributes = new java.util.ArrayList<AttributeType>(userAttributes.length); } for (AttributeType value : userAttributes) { this.userAttributes.add(value); } return this; } /** * <p> * An array of name-value pairs representing user attributes. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param userAttributes <p> * An array of name-value pairs representing user attributes. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public SignUpRequest withUserAttributes(java.util.Collection<AttributeType> userAttributes) { setUserAttributes(userAttributes); return this; } /** * <p> * The validation data in the request to register a user. * </p> * * @return <p> * The validation data in the request to register a user. * </p> */ public java.util.List<AttributeType> getValidationData() { return validationData; } /** * <p> * The validation data in the request to register a user. * </p> * * @param validationData <p> * The validation data in the request to register a user. * </p> */ public void setValidationData(java.util.Collection<AttributeType> validationData) { if (validationData == null) { this.validationData = null; return; } this.validationData = new java.util.ArrayList<AttributeType>(validationData); } /** * <p> * The validation data in the request to register a user. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param validationData <p> * The validation data in the request to register a user. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public SignUpRequest withValidationData(AttributeType... validationData) { if (getValidationData() == null) { this.validationData = new java.util.ArrayList<AttributeType>(validationData.length); } for (AttributeType value : validationData) { this.validationData.add(value); } return this; } /** * <p> * The validation data in the request to register a user. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param validationData <p> * The validation data in the request to register a user. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public SignUpRequest withValidationData(java.util.Collection<AttributeType> validationData) { setValidationData(validationData); 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 (getClientId() != null) sb.append("ClientId: " + getClientId() + ","); if (getSecretHash() != null) sb.append("SecretHash: " + getSecretHash() + ","); if (getUsername() != null) sb.append("Username: " + getUsername() + ","); if (getPassword() != null) sb.append("Password: " + getPassword() + ","); if (getUserAttributes() != null) sb.append("UserAttributes: " + getUserAttributes() + ","); if (getValidationData() != null) sb.append("ValidationData: " + getValidationData()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClientId() == null) ? 0 : getClientId().hashCode()); hashCode = prime * hashCode + ((getSecretHash() == null) ? 0 : getSecretHash().hashCode()); hashCode = prime * hashCode + ((getUsername() == null) ? 0 : getUsername().hashCode()); hashCode = prime * hashCode + ((getPassword() == null) ? 0 : getPassword().hashCode()); hashCode = prime * hashCode + ((getUserAttributes() == null) ? 0 : getUserAttributes().hashCode()); hashCode = prime * hashCode + ((getValidationData() == null) ? 0 : getValidationData().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SignUpRequest == false) return false; SignUpRequest other = (SignUpRequest) obj; if (other.getClientId() == null ^ this.getClientId() == null) return false; if (other.getClientId() != null && other.getClientId().equals(this.getClientId()) == false) return false; if (other.getSecretHash() == null ^ this.getSecretHash() == null) return false; if (other.getSecretHash() != null && other.getSecretHash().equals(this.getSecretHash()) == false) return false; if (other.getUsername() == null ^ this.getUsername() == null) return false; if (other.getUsername() != null && other.getUsername().equals(this.getUsername()) == false) return false; if (other.getPassword() == null ^ this.getPassword() == null) return false; if (other.getPassword() != null && other.getPassword().equals(this.getPassword()) == false) return false; if (other.getUserAttributes() == null ^ this.getUserAttributes() == null) return false; if (other.getUserAttributes() != null && other.getUserAttributes().equals(this.getUserAttributes()) == false) return false; if (other.getValidationData() == null ^ this.getValidationData() == null) return false; if (other.getValidationData() != null && other.getValidationData().equals(this.getValidationData()) == false) return false; return true; } }