All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.cognitoidp.model.AdminRespondToAuthChallengeRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Cognito Identity Provider Service module holds the client classes that are used for communicating with Amazon Cognito Identity Provider Service.

There is a newer version: 1.11.89
Show newest version
/*
 * Copyright 2011-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.cognitoidp.model;

import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* The request to respond to the authentication challenge, as an administrator. *

*/ public class AdminRespondToAuthChallengeRequest extends AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The ID of the Amazon Cognito user pool. *

*/ private String userPoolId; /** *

* The client ID. *

*/ private String clientId; /** *

* The name of the challenge. *

*/ private String challengeName; /** *

* The challenge response. *

*/ private java.util.Map challengeResponses; /** *

* The session. *

*/ private String session; /** *

* The ID of the Amazon Cognito user pool. *

* * @param userPoolId * The ID of the Amazon Cognito user pool. */ public void setUserPoolId(String userPoolId) { this.userPoolId = userPoolId; } /** *

* The ID of the Amazon Cognito user pool. *

* * @return The ID of the Amazon Cognito user pool. */ public String getUserPoolId() { return this.userPoolId; } /** *

* The ID of the Amazon Cognito user pool. *

* * @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 AdminRespondToAuthChallengeRequest withUserPoolId(String userPoolId) { setUserPoolId(userPoolId); return this; } /** *

* The client ID. *

* * @param clientId * The client ID. */ public void setClientId(String clientId) { this.clientId = clientId; } /** *

* The client ID. *

* * @return The client ID. */ public String getClientId() { return this.clientId; } /** *

* The client ID. *

* * @param clientId * The client ID. * @return Returns a reference to this object so that method calls can be * chained together. */ public AdminRespondToAuthChallengeRequest withClientId(String clientId) { setClientId(clientId); return this; } /** *

* The name of the challenge. *

* * @param challengeName * The name of the challenge. * @see ChallengeNameType */ public void setChallengeName(String challengeName) { this.challengeName = challengeName; } /** *

* The name of the challenge. *

* * @return The name of the challenge. * @see ChallengeNameType */ public String getChallengeName() { return this.challengeName; } /** *

* The name of the challenge. *

* * @param challengeName * The name of the challenge. * @return Returns a reference to this object so that method calls can be * chained together. * @see ChallengeNameType */ public AdminRespondToAuthChallengeRequest withChallengeName( String challengeName) { setChallengeName(challengeName); return this; } /** *

* The name of the challenge. *

* * @param challengeName * The name of the challenge. * @see ChallengeNameType */ public void setChallengeName(ChallengeNameType challengeName) { this.challengeName = challengeName.toString(); } /** *

* The name of the challenge. *

* * @param challengeName * The name of the challenge. * @return Returns a reference to this object so that method calls can be * chained together. * @see ChallengeNameType */ public AdminRespondToAuthChallengeRequest withChallengeName( ChallengeNameType challengeName) { setChallengeName(challengeName); return this; } /** *

* The challenge response. *

* * @return The challenge response. */ public java.util.Map getChallengeResponses() { return challengeResponses; } /** *

* The challenge response. *

* * @param challengeResponses * The challenge response. */ public void setChallengeResponses( java.util.Map challengeResponses) { this.challengeResponses = challengeResponses; } /** *

* The challenge response. *

* * @param challengeResponses * The challenge response. * @return Returns a reference to this object so that method calls can be * chained together. */ public AdminRespondToAuthChallengeRequest withChallengeResponses( java.util.Map challengeResponses) { setChallengeResponses(challengeResponses); return this; } public AdminRespondToAuthChallengeRequest addChallengeResponsesEntry( String key, String value) { if (null == this.challengeResponses) { this.challengeResponses = new java.util.HashMap(); } if (this.challengeResponses.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.challengeResponses.put(key, value); return this; } /** * Removes all the entries added into ChallengeResponses. <p> Returns a * reference to this object so that method calls can be chained together. */ public AdminRespondToAuthChallengeRequest clearChallengeResponsesEntries() { this.challengeResponses = null; return this; } /** *

* The session. *

* * @param session * The session. */ public void setSession(String session) { this.session = session; } /** *

* The session. *

* * @return The session. */ public String getSession() { return this.session; } /** *

* The session. *

* * @param session * The session. * @return Returns a reference to this object so that method calls can be * chained together. */ public AdminRespondToAuthChallengeRequest withSession(String session) { setSession(session); 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: " + getUserPoolId() + ","); if (getClientId() != null) sb.append("ClientId: " + getClientId() + ","); if (getChallengeName() != null) sb.append("ChallengeName: " + getChallengeName() + ","); if (getChallengeResponses() != null) sb.append("ChallengeResponses: " + getChallengeResponses() + ","); if (getSession() != null) sb.append("Session: " + getSession()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AdminRespondToAuthChallengeRequest == false) return false; AdminRespondToAuthChallengeRequest other = (AdminRespondToAuthChallengeRequest) 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.getChallengeName() == null ^ this.getChallengeName() == null) return false; if (other.getChallengeName() != null && other.getChallengeName().equals(this.getChallengeName()) == false) return false; if (other.getChallengeResponses() == null ^ this.getChallengeResponses() == null) return false; if (other.getChallengeResponses() != null && other.getChallengeResponses().equals( this.getChallengeResponses()) == false) return false; if (other.getSession() == null ^ this.getSession() == null) return false; if (other.getSession() != null && other.getSession().equals(this.getSession()) == 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 + ((getChallengeName() == null) ? 0 : getChallengeName() .hashCode()); hashCode = prime * hashCode + ((getChallengeResponses() == null) ? 0 : getChallengeResponses().hashCode()); hashCode = prime * hashCode + ((getSession() == null) ? 0 : getSession().hashCode()); return hashCode; } @Override public AdminRespondToAuthChallengeRequest clone() { return (AdminRespondToAuthChallengeRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy