/* * Copyright 2012-2017 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.cognitoidp.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * <p> * Initiates the authorization request, as an administrator. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminInitiateAuth" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AdminInitiateAuthRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** * <p> * The ID of the Amazon Cognito user pool. * </p> */ private String userPoolId; /** * <p> * The client app ID. * </p> */ private String clientId; /** * <p> * The authentication flow. * </p> */ private String authFlow; /** * <p> * The authentication parameters. * </p> */ private java.util.Map<String, String> authParameters; /** * <p> * The client app metadata. * </p> */ private java.util.Map<String, String> clientMetadata; /** * <p> * The ID of the Amazon Cognito user pool. * </p> * * @param userPoolId * The ID of the Amazon Cognito user pool. */ public void setUserPoolId(String userPoolId) { this.userPoolId = userPoolId; } /** * <p> * The ID of the Amazon Cognito user pool. * </p> * * @return The ID of the Amazon Cognito user pool. */ public String getUserPoolId() { return this.userPoolId; } /** * <p> * The ID of the Amazon Cognito user pool. * </p> * * @param userPoolId * The ID of the Amazon Cognito user pool. * @return Returns a reference to this object so that method calls can be chained together. */ public AdminInitiateAuthRequest withUserPoolId(String userPoolId) { setUserPoolId(userPoolId); return this; } /** * <p> * The client app ID. * </p> * * @param clientId * The client app ID. */ public void setClientId(String clientId) { this.clientId = clientId; } /** * <p> * The client app ID. * </p> * * @return The client app ID. */ public String getClientId() { return this.clientId; } /** * <p> * The client app ID. * </p> * * @param clientId * The client app ID. * @return Returns a reference to this object so that method calls can be chained together. */ public AdminInitiateAuthRequest withClientId(String clientId) { setClientId(clientId); return this; } /** * <p> * The authentication flow. * </p> * * @param authFlow * The authentication flow. * @see AuthFlowType */ public void setAuthFlow(String authFlow) { this.authFlow = authFlow; } /** * <p> * The authentication flow. * </p> * * @return The authentication flow. * @see AuthFlowType */ public String getAuthFlow() { return this.authFlow; } /** * <p> * The authentication flow. * </p> * * @param authFlow * The authentication flow. * @return Returns a reference to this object so that method calls can be chained together. * @see AuthFlowType */ public AdminInitiateAuthRequest withAuthFlow(String authFlow) { setAuthFlow(authFlow); return this; } /** * <p> * The authentication flow. * </p> * * @param authFlow * The authentication flow. * @see AuthFlowType */ public void setAuthFlow(AuthFlowType authFlow) { this.authFlow = authFlow.toString(); } /** * <p> * The authentication flow. * </p> * * @param authFlow * The authentication flow. * @return Returns a reference to this object so that method calls can be chained together. * @see AuthFlowType */ public AdminInitiateAuthRequest withAuthFlow(AuthFlowType authFlow) { setAuthFlow(authFlow); return this; } /** * <p> * The authentication parameters. * </p> * * @return The authentication parameters. */ public java.util.Map<String, String> getAuthParameters() { return authParameters; } /** * <p> * The authentication parameters. * </p> * * @param authParameters * The authentication parameters. */ public void setAuthParameters(java.util.Map<String, String> authParameters) { this.authParameters = authParameters; } /** * <p> * The authentication parameters. * </p> * * @param authParameters * The authentication parameters. * @return Returns a reference to this object so that method calls can be chained together. */ public AdminInitiateAuthRequest withAuthParameters(java.util.Map<String, String> authParameters) { setAuthParameters(authParameters); return this; } public AdminInitiateAuthRequest addAuthParametersEntry(String key, String value) { if (null == this.authParameters) { this.authParameters = new java.util.HashMap<String, String>(); } if (this.authParameters.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.authParameters.put(key, value); return this; } /** * Removes all the entries added into AuthParameters. * * @return Returns a reference to this object so that method calls can be chained together. */ public AdminInitiateAuthRequest clearAuthParametersEntries() { this.authParameters = null; return this; } /** * <p> * The client app metadata. * </p> * * @return The client app metadata. */ public java.util.Map<String, String> getClientMetadata() { return clientMetadata; } /** * <p> * The client app metadata. * </p> * * @param clientMetadata * The client app metadata. */ public void setClientMetadata(java.util.Map<String, String> clientMetadata) { this.clientMetadata = clientMetadata; } /** * <p> * The client app metadata. * </p> * * @param clientMetadata * The client app metadata. * @return Returns a reference to this object so that method calls can be chained together. */ public AdminInitiateAuthRequest withClientMetadata(java.util.Map<String, String> clientMetadata) { setClientMetadata(clientMetadata); return this; } public AdminInitiateAuthRequest addClientMetadataEntry(String key, String value) { if (null == this.clientMetadata) { this.clientMetadata = new java.util.HashMap<String, String>(); } if (this.clientMetadata.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.clientMetadata.put(key, value); return this; } /** * Removes all the entries added into ClientMetadata. * * @return Returns a reference to this object so that method calls can be chained together. */ public AdminInitiateAuthRequest clearClientMetadataEntries() { this.clientMetadata = null; 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 (getUserPoolId() != null) sb.append("UserPoolId: ").append(getUserPoolId()).append(","); if (getClientId() != null) sb.append("ClientId: ").append(getClientId()).append(","); if (getAuthFlow() != null) sb.append("AuthFlow: ").append(getAuthFlow()).append(","); if (getAuthParameters() != null) sb.append("AuthParameters: ").append(getAuthParameters()).append(","); if (getClientMetadata() != null) sb.append("ClientMetadata: ").append(getClientMetadata()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AdminInitiateAuthRequest == false) return false; AdminInitiateAuthRequest other = (AdminInitiateAuthRequest) obj; if (other.getUserPoolId() == null ^ this.getUserPoolId() == null) return false; if (other.getUserPoolId() != null && other.getUserPoolId().equals(this.getUserPoolId()) == false) return false; if (other.getClientId() == null ^ this.getClientId() == null) return false; if (other.getClientId() != null && other.getClientId().equals(this.getClientId()) == false) return false; if (other.getAuthFlow() == null ^ this.getAuthFlow() == null) return false; if (other.getAuthFlow() != null && other.getAuthFlow().equals(this.getAuthFlow()) == false) return false; if (other.getAuthParameters() == null ^ this.getAuthParameters() == null) return false; if (other.getAuthParameters() != null && other.getAuthParameters().equals(this.getAuthParameters()) == false) return false; if (other.getClientMetadata() == null ^ this.getClientMetadata() == null) return false; if (other.getClientMetadata() != null && other.getClientMetadata().equals(this.getClientMetadata()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getUserPoolId() == null) ? 0 : getUserPoolId().hashCode()); hashCode = prime * hashCode + ((getClientId() == null) ? 0 : getClientId().hashCode()); hashCode = prime * hashCode + ((getAuthFlow() == null) ? 0 : getAuthFlow().hashCode()); hashCode = prime * hashCode + ((getAuthParameters() == null) ? 0 : getAuthParameters().hashCode()); hashCode = prime * hashCode + ((getClientMetadata() == null) ? 0 : getClientMetadata().hashCode()); return hashCode; } @Override public AdminInitiateAuthRequest clone() { return (AdminInitiateAuthRequest) super.clone(); } }