Java tutorial
/* * Copyright 2014-2019 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.identitymanagement.model; import java.io.Serializable; import javax.annotation.Generated; /** * <p> * Contains information about an IAM user entity. * </p> * <p> * This data type is used as a response element in the following operations: * </p> * <ul> * <li> * <p> * <a>CreateUser</a> * </p> * </li> * <li> * <p> * <a>GetUser</a> * </p> * </li> * <li> * <p> * <a>ListUsers</a> * </p> * </li> * </ul> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/User" target="_top">AWS API Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class User implements Serializable, Cloneable { /** * <p> * The path to the user. For more information about paths, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the <i>IAM * User Guide</i>. * </p> */ private String path; /** * <p> * The friendly name identifying the user. * </p> */ private String userName; /** * <p> * The stable and unique string identifying the user. For more information about IDs, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the <i>IAM * User Guide</i>. * </p> */ private String userId; /** * <p> * The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in * policies, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM * Identifiers</a> in the <i>IAM User Guide</i>. * </p> */ private String arn; /** * <p> * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the user was * created. * </p> */ private java.util.Date createDate; /** * <p> * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the user's * password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last * sign-in time, see the <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html">Credential Reports</a> topic in * the <i>IAM User Guide</i>. If a password is used more than once in a five-minute span, only the first use is * returned in this field. If the field is null (no value), then it indicates that they never signed in with a * password. This can be because: * </p> * <ul> * <li> * <p> * The user never had a password. * </p> * </li> * <li> * <p> * A password exists but has not been used since IAM started tracking this information on October 20, 2014. * </p> * </li> * </ul> * <p> * A null value does not mean that the user <i>never</i> had a password. Also, if the user does not currently have a * password but had one in the past, then this field contains the date and time the most recent password was used. * </p> * <p> * This value is returned only in the <a>GetUser</a> and <a>ListUsers</a> operations. * </p> */ private java.util.Date passwordLastUsed; /** * <p> * The ARN of the policy used to set the permissions boundary for the user. * </p> * <p> * For more information about permissions boundaries, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions Boundaries * for IAM Identities </a> in the <i>IAM User Guide</i>. * </p> */ private AttachedPermissionsBoundary permissionsBoundary; /** * <p> * A list of tags that are associated with the specified user. For more information about tagging, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM Identities</a> in the <i>IAM * User Guide</i>. * </p> */ private com.amazonaws.internal.SdkInternalList<Tag> tags; /** * Default constructor for User object. Callers should use the setter or fluent setter (with...) methods to * initialize the object after creating it. */ public User() { } /** * Constructs a new User object. Callers should use the setter or fluent setter (with...) methods to initialize any * additional object members. * * @param path * The path to the user. For more information about paths, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. * @param userName * The friendly name identifying the user. * @param userId * The stable and unique string identifying the user. For more information about IDs, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. * @param arn * The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use * ARNs in policies, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. * @param createDate * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the * user was created. */ public User(String path, String userName, String userId, String arn, java.util.Date createDate) { setPath(path); setUserName(userName); setUserId(userId); setArn(arn); setCreateDate(createDate); } /** * <p> * The path to the user. For more information about paths, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the <i>IAM * User Guide</i>. * </p> * * @param path * The path to the user. For more information about paths, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. */ public void setPath(String path) { this.path = path; } /** * <p> * The path to the user. For more information about paths, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the <i>IAM * User Guide</i>. * </p> * * @return The path to the user. For more information about paths, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. */ public String getPath() { return this.path; } /** * <p> * The path to the user. For more information about paths, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the <i>IAM * User Guide</i>. * </p> * * @param path * The path to the user. For more information about paths, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. * @return Returns a reference to this object so that method calls can be chained together. */ public User withPath(String path) { setPath(path); return this; } /** * <p> * The friendly name identifying the user. * </p> * * @param userName * The friendly name identifying the user. */ public void setUserName(String userName) { this.userName = userName; } /** * <p> * The friendly name identifying the user. * </p> * * @return The friendly name identifying the user. */ public String getUserName() { return this.userName; } /** * <p> * The friendly name identifying the user. * </p> * * @param userName * The friendly name identifying the user. * @return Returns a reference to this object so that method calls can be chained together. */ public User withUserName(String userName) { setUserName(userName); return this; } /** * <p> * The stable and unique string identifying the user. For more information about IDs, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the <i>IAM * User Guide</i>. * </p> * * @param userId * The stable and unique string identifying the user. For more information about IDs, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. */ public void setUserId(String userId) { this.userId = userId; } /** * <p> * The stable and unique string identifying the user. For more information about IDs, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the <i>IAM * User Guide</i>. * </p> * * @return The stable and unique string identifying the user. For more information about IDs, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. */ public String getUserId() { return this.userId; } /** * <p> * The stable and unique string identifying the user. For more information about IDs, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the <i>IAM * User Guide</i>. * </p> * * @param userId * The stable and unique string identifying the user. For more information about IDs, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. * @return Returns a reference to this object so that method calls can be chained together. */ public User withUserId(String userId) { setUserId(userId); return this; } /** * <p> * The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in * policies, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM * Identifiers</a> in the <i>IAM User Guide</i>. * </p> * * @param arn * The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use * ARNs in policies, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. */ public void setArn(String arn) { this.arn = arn; } /** * <p> * The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in * policies, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM * Identifiers</a> in the <i>IAM User Guide</i>. * </p> * * @return The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use * ARNs in policies, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. */ public String getArn() { return this.arn; } /** * <p> * The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in * policies, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM * Identifiers</a> in the <i>IAM User Guide</i>. * </p> * * @param arn * The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use * ARNs in policies, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM Identifiers</a> in the * <i>IAM User Guide</i>. * @return Returns a reference to this object so that method calls can be chained together. */ public User withArn(String arn) { setArn(arn); return this; } /** * <p> * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the user was * created. * </p> * * @param createDate * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the * user was created. */ public void setCreateDate(java.util.Date createDate) { this.createDate = createDate; } /** * <p> * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the user was * created. * </p> * * @return The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the * user was created. */ public java.util.Date getCreateDate() { return this.createDate; } /** * <p> * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the user was * created. * </p> * * @param createDate * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the * user was created. * @return Returns a reference to this object so that method calls can be chained together. */ public User withCreateDate(java.util.Date createDate) { setCreateDate(createDate); return this; } /** * <p> * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the user's * password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last * sign-in time, see the <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html">Credential Reports</a> topic in * the <i>IAM User Guide</i>. If a password is used more than once in a five-minute span, only the first use is * returned in this field. If the field is null (no value), then it indicates that they never signed in with a * password. This can be because: * </p> * <ul> * <li> * <p> * The user never had a password. * </p> * </li> * <li> * <p> * A password exists but has not been used since IAM started tracking this information on October 20, 2014. * </p> * </li> * </ul> * <p> * A null value does not mean that the user <i>never</i> had a password. Also, if the user does not currently have a * password but had one in the past, then this field contains the date and time the most recent password was used. * </p> * <p> * This value is returned only in the <a>GetUser</a> and <a>ListUsers</a> operations. * </p> * * @param passwordLastUsed * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the * user's password was last used to sign in to an AWS website. For a list of AWS websites that capture a * user's last sign-in time, see the <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html">Credential Reports</a> * topic in the <i>IAM User Guide</i>. If a password is used more than once in a five-minute span, only the * first use is returned in this field. If the field is null (no value), then it indicates that they never * signed in with a password. This can be because:</p> * <ul> * <li> * <p> * The user never had a password. * </p> * </li> * <li> * <p> * A password exists but has not been used since IAM started tracking this information on October 20, 2014. * </p> * </li> * </ul> * <p> * A null value does not mean that the user <i>never</i> had a password. Also, if the user does not currently * have a password but had one in the past, then this field contains the date and time the most recent * password was used. * </p> * <p> * This value is returned only in the <a>GetUser</a> and <a>ListUsers</a> operations. */ public void setPasswordLastUsed(java.util.Date passwordLastUsed) { this.passwordLastUsed = passwordLastUsed; } /** * <p> * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the user's * password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last * sign-in time, see the <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html">Credential Reports</a> topic in * the <i>IAM User Guide</i>. If a password is used more than once in a five-minute span, only the first use is * returned in this field. If the field is null (no value), then it indicates that they never signed in with a * password. This can be because: * </p> * <ul> * <li> * <p> * The user never had a password. * </p> * </li> * <li> * <p> * A password exists but has not been used since IAM started tracking this information on October 20, 2014. * </p> * </li> * </ul> * <p> * A null value does not mean that the user <i>never</i> had a password. Also, if the user does not currently have a * password but had one in the past, then this field contains the date and time the most recent password was used. * </p> * <p> * This value is returned only in the <a>GetUser</a> and <a>ListUsers</a> operations. * </p> * * @return The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the * user's password was last used to sign in to an AWS website. For a list of AWS websites that capture a * user's last sign-in time, see the <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html">Credential Reports</a> * topic in the <i>IAM User Guide</i>. If a password is used more than once in a five-minute span, only the * first use is returned in this field. If the field is null (no value), then it indicates that they never * signed in with a password. This can be because:</p> * <ul> * <li> * <p> * The user never had a password. * </p> * </li> * <li> * <p> * A password exists but has not been used since IAM started tracking this information on October 20, 2014. * </p> * </li> * </ul> * <p> * A null value does not mean that the user <i>never</i> had a password. Also, if the user does not * currently have a password but had one in the past, then this field contains the date and time the most * recent password was used. * </p> * <p> * This value is returned only in the <a>GetUser</a> and <a>ListUsers</a> operations. */ public java.util.Date getPasswordLastUsed() { return this.passwordLastUsed; } /** * <p> * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the user's * password was last used to sign in to an AWS website. For a list of AWS websites that capture a user's last * sign-in time, see the <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html">Credential Reports</a> topic in * the <i>IAM User Guide</i>. If a password is used more than once in a five-minute span, only the first use is * returned in this field. If the field is null (no value), then it indicates that they never signed in with a * password. This can be because: * </p> * <ul> * <li> * <p> * The user never had a password. * </p> * </li> * <li> * <p> * A password exists but has not been used since IAM started tracking this information on October 20, 2014. * </p> * </li> * </ul> * <p> * A null value does not mean that the user <i>never</i> had a password. Also, if the user does not currently have a * password but had one in the past, then this field contains the date and time the most recent password was used. * </p> * <p> * This value is returned only in the <a>GetUser</a> and <a>ListUsers</a> operations. * </p> * * @param passwordLastUsed * The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>, when the * user's password was last used to sign in to an AWS website. For a list of AWS websites that capture a * user's last sign-in time, see the <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html">Credential Reports</a> * topic in the <i>IAM User Guide</i>. If a password is used more than once in a five-minute span, only the * first use is returned in this field. If the field is null (no value), then it indicates that they never * signed in with a password. This can be because:</p> * <ul> * <li> * <p> * The user never had a password. * </p> * </li> * <li> * <p> * A password exists but has not been used since IAM started tracking this information on October 20, 2014. * </p> * </li> * </ul> * <p> * A null value does not mean that the user <i>never</i> had a password. Also, if the user does not currently * have a password but had one in the past, then this field contains the date and time the most recent * password was used. * </p> * <p> * This value is returned only in the <a>GetUser</a> and <a>ListUsers</a> operations. * @return Returns a reference to this object so that method calls can be chained together. */ public User withPasswordLastUsed(java.util.Date passwordLastUsed) { setPasswordLastUsed(passwordLastUsed); return this; } /** * <p> * The ARN of the policy used to set the permissions boundary for the user. * </p> * <p> * For more information about permissions boundaries, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions Boundaries * for IAM Identities </a> in the <i>IAM User Guide</i>. * </p> * * @param permissionsBoundary * The ARN of the policy used to set the permissions boundary for the user.</p> * <p> * For more information about permissions boundaries, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions * Boundaries for IAM Identities </a> in the <i>IAM User Guide</i>. */ public void setPermissionsBoundary(AttachedPermissionsBoundary permissionsBoundary) { this.permissionsBoundary = permissionsBoundary; } /** * <p> * The ARN of the policy used to set the permissions boundary for the user. * </p> * <p> * For more information about permissions boundaries, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions Boundaries * for IAM Identities </a> in the <i>IAM User Guide</i>. * </p> * * @return The ARN of the policy used to set the permissions boundary for the user.</p> * <p> * For more information about permissions boundaries, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions * Boundaries for IAM Identities </a> in the <i>IAM User Guide</i>. */ public AttachedPermissionsBoundary getPermissionsBoundary() { return this.permissionsBoundary; } /** * <p> * The ARN of the policy used to set the permissions boundary for the user. * </p> * <p> * For more information about permissions boundaries, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions Boundaries * for IAM Identities </a> in the <i>IAM User Guide</i>. * </p> * * @param permissionsBoundary * The ARN of the policy used to set the permissions boundary for the user.</p> * <p> * For more information about permissions boundaries, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions * Boundaries for IAM Identities </a> in the <i>IAM User Guide</i>. * @return Returns a reference to this object so that method calls can be chained together. */ public User withPermissionsBoundary(AttachedPermissionsBoundary permissionsBoundary) { setPermissionsBoundary(permissionsBoundary); return this; } /** * <p> * A list of tags that are associated with the specified user. For more information about tagging, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM Identities</a> in the <i>IAM * User Guide</i>. * </p> * * @return A list of tags that are associated with the specified user. For more information about tagging, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM Identities</a> in the * <i>IAM User Guide</i>. */ public java.util.List<Tag> getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList<Tag>(); } return tags; } /** * <p> * A list of tags that are associated with the specified user. For more information about tagging, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM Identities</a> in the <i>IAM * User Guide</i>. * </p> * * @param tags * A list of tags that are associated with the specified user. For more information about tagging, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM Identities</a> in the * <i>IAM User Guide</i>. */ public void setTags(java.util.Collection<Tag> tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList<Tag>(tags); } /** * <p> * A list of tags that are associated with the specified user. For more information about tagging, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM Identities</a> in the <i>IAM * User Guide</i>. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. * </p> * * @param tags * A list of tags that are associated with the specified user. For more information about tagging, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM Identities</a> in the * <i>IAM User Guide</i>. * @return Returns a reference to this object so that method calls can be chained together. */ public User withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList<Tag>(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** * <p> * A list of tags that are associated with the specified user. For more information about tagging, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM Identities</a> in the <i>IAM * User Guide</i>. * </p> * * @param tags * A list of tags that are associated with the specified user. For more information about tagging, see <a * href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM Identities</a> in the * <i>IAM User Guide</i>. * @return Returns a reference to this object so that method calls can be chained together. */ public User withTags(java.util.Collection<Tag> tags) { setTags(tags); 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 (getPath() != null) sb.append("Path: ").append(getPath()).append(","); if (getUserName() != null) sb.append("UserName: ").append(getUserName()).append(","); if (getUserId() != null) sb.append("UserId: ").append(getUserId()).append(","); if (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getCreateDate() != null) sb.append("CreateDate: ").append(getCreateDate()).append(","); if (getPasswordLastUsed() != null) sb.append("PasswordLastUsed: ").append(getPasswordLastUsed()).append(","); if (getPermissionsBoundary() != null) sb.append("PermissionsBoundary: ").append(getPermissionsBoundary()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof User == false) return false; User other = (User) obj; if (other.getPath() == null ^ this.getPath() == null) return false; if (other.getPath() != null && other.getPath().equals(this.getPath()) == 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.getUserId() == null ^ this.getUserId() == null) return false; if (other.getUserId() != null && other.getUserId().equals(this.getUserId()) == false) return false; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getCreateDate() == null ^ this.getCreateDate() == null) return false; if (other.getCreateDate() != null && other.getCreateDate().equals(this.getCreateDate()) == false) return false; if (other.getPasswordLastUsed() == null ^ this.getPasswordLastUsed() == null) return false; if (other.getPasswordLastUsed() != null && other.getPasswordLastUsed().equals(this.getPasswordLastUsed()) == false) return false; if (other.getPermissionsBoundary() == null ^ this.getPermissionsBoundary() == null) return false; if (other.getPermissionsBoundary() != null && other.getPermissionsBoundary().equals(this.getPermissionsBoundary()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPath() == null) ? 0 : getPath().hashCode()); hashCode = prime * hashCode + ((getUserName() == null) ? 0 : getUserName().hashCode()); hashCode = prime * hashCode + ((getUserId() == null) ? 0 : getUserId().hashCode()); hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getCreateDate() == null) ? 0 : getCreateDate().hashCode()); hashCode = prime * hashCode + ((getPasswordLastUsed() == null) ? 0 : getPasswordLastUsed().hashCode()); hashCode = prime * hashCode + ((getPermissionsBoundary() == null) ? 0 : getPermissionsBoundary().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public User clone() { try { return (User) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }