/* * Copyright 2018-2023 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.verifiedpermissions.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Contains the identifier of an entity, including its ID and type. *

*

* This data type is used as a request parameter for IsAuthorized * operation, and as a response parameter for the CreatePolicy, GetPolicy, and UpdatePolicy * operations. *

*

* Example: {"entityId":"string","entityType":"string"} *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class EntityIdentifier implements Serializable, Cloneable, StructuredPojo { /** *

* The type of an entity. *

*

* Example: "entityType":"typeName" *

*/ private String entityType; /** *

* The identifier of an entity. *

*

* "entityId":"identifier" *

*/ private String entityId; /** *

* The type of an entity. *

*

* Example: "entityType":"typeName" *

* * @param entityType * The type of an entity.

*

* Example: "entityType":"typeName" */ public void setEntityType(String entityType) { this.entityType = entityType; } /** *

* The type of an entity. *

*

* Example: "entityType":"typeName" *

* * @return The type of an entity.

*

* Example: "entityType":"typeName" */ public String getEntityType() { return this.entityType; } /** *

* The type of an entity. *

*

* Example: "entityType":"typeName" *

* * @param entityType * The type of an entity.

*

* Example: "entityType":"typeName" * @return Returns a reference to this object so that method calls can be chained together. */ public EntityIdentifier withEntityType(String entityType) { setEntityType(entityType); return this; } /** *

* The identifier of an entity. *

*

* "entityId":"identifier" *

* * @param entityId * The identifier of an entity.

*

* "entityId":"identifier" */ public void setEntityId(String entityId) { this.entityId = entityId; } /** *

* The identifier of an entity. *

*

* "entityId":"identifier" *

* * @return The identifier of an entity.

*

* "entityId":"identifier" */ public String getEntityId() { return this.entityId; } /** *

* The identifier of an entity. *

*

* "entityId":"identifier" *

* * @param entityId * The identifier of an entity.

*

* "entityId":"identifier" * @return Returns a reference to this object so that method calls can be chained together. */ public EntityIdentifier withEntityId(String entityId) { setEntityId(entityId); 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 (getEntityType() != null) sb.append("EntityType: ").append(getEntityType()).append(","); if (getEntityId() != null) sb.append("EntityId: ").append(getEntityId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof EntityIdentifier == false) return false; EntityIdentifier other = (EntityIdentifier) obj; if (other.getEntityType() == null ^ this.getEntityType() == null) return false; if (other.getEntityType() != null && other.getEntityType().equals(this.getEntityType()) == false) return false; if (other.getEntityId() == null ^ this.getEntityId() == null) return false; if (other.getEntityId() != null && other.getEntityId().equals(this.getEntityId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEntityType() == null) ? 0 : getEntityType().hashCode()); hashCode = prime * hashCode + ((getEntityId() == null) ? 0 : getEntityId().hashCode()); return hashCode; } @Override public EntityIdentifier clone() { try { return (EntityIdentifier) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.verifiedpermissions.model.transform.EntityIdentifierMarshaller.getInstance().marshall(this, protocolMarshaller); } }