com.amazonaws.services.cognitoidentity.model.GetIdentityPoolRolesResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-osgi Show documentation
/*
 * 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.cognitoidentity.model;
import java.io.Serializable;
/**
 * 
 * Returned in response to a successful GetIdentityPoolRoles
 * operation.
 * 
 */
public class GetIdentityPoolRolesResult implements Serializable, Cloneable {
    /**
     * 
     * An identity pool ID in the format REGION:GUID.
     * 
     */
    private String identityPoolId;
    /**
     * 
     * The map of roles associated with this pool. Currently only authenticated
     * and unauthenticated roles are supported.
     * 
     */
    private java.util.Map roles;
    /**
     * 
     * An identity pool ID in the format REGION:GUID.
     * 
     * 
     * @param identityPoolId
     *        An identity pool ID in the format REGION:GUID.
     */
    public void setIdentityPoolId(String identityPoolId) {
        this.identityPoolId = identityPoolId;
    }
    /**
     * 
     * An identity pool ID in the format REGION:GUID.
     * 
     * 
     * @return An identity pool ID in the format REGION:GUID.
     */
    public String getIdentityPoolId() {
        return this.identityPoolId;
    }
    /**
     * 
     * An identity pool ID in the format REGION:GUID.
     * 
     * 
     * @param identityPoolId
     *        An identity pool ID in the format REGION:GUID.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public GetIdentityPoolRolesResult withIdentityPoolId(String identityPoolId) {
        setIdentityPoolId(identityPoolId);
        return this;
    }
    /**
     * 
     * The map of roles associated with this pool. Currently only authenticated
     * and unauthenticated roles are supported.
     * 
     * 
     * @return The map of roles associated with this pool. Currently only
     *         authenticated and unauthenticated roles are supported.
     */
    public java.util.Map getRoles() {
        return roles;
    }
    /**
     * 
     * The map of roles associated with this pool. Currently only authenticated
     * and unauthenticated roles are supported.
     * 
     * 
     * @param roles
     *        The map of roles associated with this pool. Currently only
     *        authenticated and unauthenticated roles are supported.
     */
    public void setRoles(java.util.Map roles) {
        this.roles = roles;
    }
    /**
     * 
     * The map of roles associated with this pool. Currently only authenticated
     * and unauthenticated roles are supported.
     * 
     * 
     * @param roles
     *        The map of roles associated with this pool. Currently only
     *        authenticated and unauthenticated roles are supported.
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public GetIdentityPoolRolesResult withRoles(
            java.util.Map roles) {
        setRoles(roles);
        return this;
    }
    public GetIdentityPoolRolesResult addRolesEntry(String key, String value) {
        if (null == this.roles) {
            this.roles = new java.util.HashMap();
        }
        if (this.roles.containsKey(key))
            throw new IllegalArgumentException("Duplicated keys ("
                    + key.toString() + ") are provided.");
        this.roles.put(key, value);
        return this;
    }
    /**
     * Removes all the entries added into Roles. <p> Returns a reference to
     * this object so that method calls can be chained together.
     */
    public GetIdentityPoolRolesResult clearRolesEntries() {
        this.roles = 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 (getIdentityPoolId() != null)
            sb.append("IdentityPoolId: " + getIdentityPoolId() + ",");
        if (getRoles() != null)
            sb.append("Roles: " + getRoles());
        sb.append("}");
        return sb.toString();
    }
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (obj instanceof GetIdentityPoolRolesResult == false)
            return false;
        GetIdentityPoolRolesResult other = (GetIdentityPoolRolesResult) obj;
        if (other.getIdentityPoolId() == null
                ^ this.getIdentityPoolId() == null)
            return false;
        if (other.getIdentityPoolId() != null
                && other.getIdentityPoolId().equals(this.getIdentityPoolId()) == false)
            return false;
        if (other.getRoles() == null ^ this.getRoles() == null)
            return false;
        if (other.getRoles() != null
                && other.getRoles().equals(this.getRoles()) == false)
            return false;
        return true;
    }
    @Override
    public int hashCode() {
        final int prime = 31;
        int hashCode = 1;
        hashCode = prime
                * hashCode
                + ((getIdentityPoolId() == null) ? 0 : getIdentityPoolId()
                        .hashCode());
        hashCode = prime * hashCode
                + ((getRoles() == null) ? 0 : getRoles().hashCode());
        return hashCode;
    }
    @Override
    public GetIdentityPoolRolesResult clone() {
        try {
            return (GetIdentityPoolRolesResult) super.clone();
        } catch (CloneNotSupportedException e) {
            throw new IllegalStateException(
                    "Got a CloneNotSupportedException from Object.clone() "
                            + "even though we're Cloneable!", e);
        }
    }
}