/* * 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.pinpoint.model; import java.io.Serializable; public class EndpointResponse implements Serializable { /** * The address or token of the endpoint. */ private String address; /** * The ID of the application associated with the endpoint. */ private String applicationId; /** * Custom attributes that your app reports to Amazon Pinpoint. You can use * these attributes as selection criteria when you create a segment. */ private java.util.Map<String, java.util.List<String>> attributes; /** * The channel type. Valid values: APNS, GCM * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>APNS, GCM */ private String channelType; /** * A number from 0 - 99 that represents the cohort the endpoint is assigned * to. Endpoints are grouped into cohorts randomly, and each cohort contains * approximately 1 percent of the endpoints for an app. Amazon Pinpoint * assigns cohorts to the holdout or treatment allocations for a campaign. */ private String cohortId; /** * The last time the endpoint was created. Provided in ISO 8601 format. */ private String creationDate; /** * The endpoint demographic attributes. */ private EndpointDemographic demographic; /** * The last time the endpoint was updated. Provided in ISO 8601 format. */ private String effectiveDate; /** * The endpoint status. Can be either ACTIVE or INACTIVE. Will be set to * INACTIVE if a delivery fails. Will be set to ACTIVE if the address is * updated. */ private String endpointStatus; /** * The unique ID that you assigned to the endpoint. The ID should be a * globally unique identifier (GUID) to ensure that it is unique compared to * all other endpoints for the application. */ private String id; /** * The endpoint location attributes. */ private EndpointLocation location; /** * Custom metrics that your app reports to Amazon Pinpoint. */ private java.util.Map<String, Double> metrics; /** * Indicates whether a user has opted out of receiving messages with one of * the following values: ALL – User receives all messages. NONE – User * receives no messages. */ private String optOut; /** * The unique ID for the most recent request to update the endpoint. */ private String requestId; /** * The ShardId of endpoint */ private String shardId; /** * Custom user-specific attributes that your app reports to Amazon Pinpoint. */ private EndpointUser user; /** * The address or token of the endpoint. * * @return The address or token of the endpoint. */ public String getAddress() { return address; } /** * The address or token of the endpoint. * * @param address The address or token of the endpoint. */ public void setAddress(String address) { this.address = address; } /** * The address or token of the endpoint. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param address The address or token of the endpoint. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withAddress(String address) { this.address = address; return this; } /** * The ID of the application associated with the endpoint. * * @return The ID of the application associated with the endpoint. */ public String getApplicationId() { return applicationId; } /** * The ID of the application associated with the endpoint. * * @param applicationId The ID of the application associated with the * endpoint. */ public void setApplicationId(String applicationId) { this.applicationId = applicationId; } /** * The ID of the application associated with the endpoint. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param applicationId The ID of the application associated with the * endpoint. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withApplicationId(String applicationId) { this.applicationId = applicationId; return this; } /** * Custom attributes that your app reports to Amazon Pinpoint. You can use * these attributes as selection criteria when you create a segment. * * @return Custom attributes that your app reports to Amazon Pinpoint. You * can use these attributes as selection criteria when you create a * segment. */ public java.util.Map<String, java.util.List<String>> getAttributes() { return attributes; } /** * Custom attributes that your app reports to Amazon Pinpoint. You can use * these attributes as selection criteria when you create a segment. * * @param attributes Custom attributes that your app reports to Amazon * Pinpoint. You can use these attributes as selection criteria * when you create a segment. */ public void setAttributes(java.util.Map<String, java.util.List<String>> attributes) { this.attributes = attributes; } /** * Custom attributes that your app reports to Amazon Pinpoint. You can use * these attributes as selection criteria when you create a segment. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param attributes Custom attributes that your app reports to Amazon * Pinpoint. You can use these attributes as selection criteria * when you create a segment. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withAttributes(java.util.Map<String, java.util.List<String>> attributes) { this.attributes = attributes; return this; } /** * Custom attributes that your app reports to Amazon Pinpoint. You can use * these attributes as selection criteria when you create a segment. * <p> * The method adds a new key-value pair into Attributes parameter, and * returns a reference to this object so that method calls can be chained * together. * * @param key The key of the entry to be added into Attributes. * @param value The corresponding value of the entry to be added into * Attributes. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse addAttributesEntry(String key, java.util.List<String> value) { if (null == this.attributes) { this.attributes = new java.util.HashMap<String, java.util.List<String>>(); } if (this.attributes.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.attributes.put(key, value); return this; } /** * Removes all the entries added into Attributes. * <p> * Returns a reference to this object so that method calls can be chained * together. */ public EndpointResponse clearAttributesEntries() { this.attributes = null; return this; } /** * The channel type. Valid values: APNS, GCM * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>APNS, GCM * * @return The channel type. Valid values: APNS, GCM * @see ChannelType */ public String getChannelType() { return channelType; } /** * The channel type. Valid values: APNS, GCM * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>APNS, GCM * * @param channelType The channel type. Valid values: APNS, GCM * @see ChannelType */ public void setChannelType(String channelType) { this.channelType = channelType; } /** * The channel type. Valid values: APNS, GCM * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>APNS, GCM * * @param channelType The channel type. Valid values: APNS, GCM * @return A reference to this updated object so that method calls can be * chained together. * @see ChannelType */ public EndpointResponse withChannelType(String channelType) { this.channelType = channelType; return this; } /** * The channel type. Valid values: APNS, GCM * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>APNS, GCM * * @param channelType The channel type. Valid values: APNS, GCM * @see ChannelType */ public void setChannelType(ChannelType channelType) { this.channelType = channelType.toString(); } /** * The channel type. Valid values: APNS, GCM * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Allowed Values: </b>APNS, GCM * * @param channelType The channel type. Valid values: APNS, GCM * @return A reference to this updated object so that method calls can be * chained together. * @see ChannelType */ public EndpointResponse withChannelType(ChannelType channelType) { this.channelType = channelType.toString(); return this; } /** * A number from 0 - 99 that represents the cohort the endpoint is assigned * to. Endpoints are grouped into cohorts randomly, and each cohort contains * approximately 1 percent of the endpoints for an app. Amazon Pinpoint * assigns cohorts to the holdout or treatment allocations for a campaign. * * @return A number from 0 - 99 that represents the cohort the endpoint is * assigned to. Endpoints are grouped into cohorts randomly, and * each cohort contains approximately 1 percent of the endpoints for * an app. Amazon Pinpoint assigns cohorts to the holdout or * treatment allocations for a campaign. */ public String getCohortId() { return cohortId; } /** * A number from 0 - 99 that represents the cohort the endpoint is assigned * to. Endpoints are grouped into cohorts randomly, and each cohort contains * approximately 1 percent of the endpoints for an app. Amazon Pinpoint * assigns cohorts to the holdout or treatment allocations for a campaign. * * @param cohortId A number from 0 - 99 that represents the cohort the * endpoint is assigned to. Endpoints are grouped into cohorts * randomly, and each cohort contains approximately 1 percent of * the endpoints for an app. Amazon Pinpoint assigns cohorts to * the holdout or treatment allocations for a campaign. */ public void setCohortId(String cohortId) { this.cohortId = cohortId; } /** * A number from 0 - 99 that represents the cohort the endpoint is assigned * to. Endpoints are grouped into cohorts randomly, and each cohort contains * approximately 1 percent of the endpoints for an app. Amazon Pinpoint * assigns cohorts to the holdout or treatment allocations for a campaign. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param cohortId A number from 0 - 99 that represents the cohort the * endpoint is assigned to. Endpoints are grouped into cohorts * randomly, and each cohort contains approximately 1 percent of * the endpoints for an app. Amazon Pinpoint assigns cohorts to * the holdout or treatment allocations for a campaign. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withCohortId(String cohortId) { this.cohortId = cohortId; return this; } /** * The last time the endpoint was created. Provided in ISO 8601 format. * * @return The last time the endpoint was created. Provided in ISO 8601 * format. */ public String getCreationDate() { return creationDate; } /** * The last time the endpoint was created. Provided in ISO 8601 format. * * @param creationDate The last time the endpoint was created. Provided in * ISO 8601 format. */ public void setCreationDate(String creationDate) { this.creationDate = creationDate; } /** * The last time the endpoint was created. Provided in ISO 8601 format. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param creationDate The last time the endpoint was created. Provided in * ISO 8601 format. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withCreationDate(String creationDate) { this.creationDate = creationDate; return this; } /** * The endpoint demographic attributes. * * @return The endpoint demographic attributes. */ public EndpointDemographic getDemographic() { return demographic; } /** * The endpoint demographic attributes. * * @param demographic The endpoint demographic attributes. */ public void setDemographic(EndpointDemographic demographic) { this.demographic = demographic; } /** * The endpoint demographic attributes. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param demographic The endpoint demographic attributes. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withDemographic(EndpointDemographic demographic) { this.demographic = demographic; return this; } /** * The last time the endpoint was updated. Provided in ISO 8601 format. * * @return The last time the endpoint was updated. Provided in ISO 8601 * format. */ public String getEffectiveDate() { return effectiveDate; } /** * The last time the endpoint was updated. Provided in ISO 8601 format. * * @param effectiveDate The last time the endpoint was updated. Provided in * ISO 8601 format. */ public void setEffectiveDate(String effectiveDate) { this.effectiveDate = effectiveDate; } /** * The last time the endpoint was updated. Provided in ISO 8601 format. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param effectiveDate The last time the endpoint was updated. Provided in * ISO 8601 format. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withEffectiveDate(String effectiveDate) { this.effectiveDate = effectiveDate; return this; } /** * The endpoint status. Can be either ACTIVE or INACTIVE. Will be set to * INACTIVE if a delivery fails. Will be set to ACTIVE if the address is * updated. * * @return The endpoint status. Can be either ACTIVE or INACTIVE. Will be * set to INACTIVE if a delivery fails. Will be set to ACTIVE if the * address is updated. */ public String getEndpointStatus() { return endpointStatus; } /** * The endpoint status. Can be either ACTIVE or INACTIVE. Will be set to * INACTIVE if a delivery fails. Will be set to ACTIVE if the address is * updated. * * @param endpointStatus The endpoint status. Can be either ACTIVE or * INACTIVE. Will be set to INACTIVE if a delivery fails. Will be * set to ACTIVE if the address is updated. */ public void setEndpointStatus(String endpointStatus) { this.endpointStatus = endpointStatus; } /** * The endpoint status. Can be either ACTIVE or INACTIVE. Will be set to * INACTIVE if a delivery fails. Will be set to ACTIVE if the address is * updated. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param endpointStatus The endpoint status. Can be either ACTIVE or * INACTIVE. Will be set to INACTIVE if a delivery fails. Will be * set to ACTIVE if the address is updated. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withEndpointStatus(String endpointStatus) { this.endpointStatus = endpointStatus; return this; } /** * The unique ID that you assigned to the endpoint. The ID should be a * globally unique identifier (GUID) to ensure that it is unique compared to * all other endpoints for the application. * * @return The unique ID that you assigned to the endpoint. The ID should be * a globally unique identifier (GUID) to ensure that it is unique * compared to all other endpoints for the application. */ public String getId() { return id; } /** * The unique ID that you assigned to the endpoint. The ID should be a * globally unique identifier (GUID) to ensure that it is unique compared to * all other endpoints for the application. * * @param id The unique ID that you assigned to the endpoint. The ID should * be a globally unique identifier (GUID) to ensure that it is * unique compared to all other endpoints for the application. */ public void setId(String id) { this.id = id; } /** * The unique ID that you assigned to the endpoint. The ID should be a * globally unique identifier (GUID) to ensure that it is unique compared to * all other endpoints for the application. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param id The unique ID that you assigned to the endpoint. The ID should * be a globally unique identifier (GUID) to ensure that it is * unique compared to all other endpoints for the application. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withId(String id) { this.id = id; return this; } /** * The endpoint location attributes. * * @return The endpoint location attributes. */ public EndpointLocation getLocation() { return location; } /** * The endpoint location attributes. * * @param location The endpoint location attributes. */ public void setLocation(EndpointLocation location) { this.location = location; } /** * The endpoint location attributes. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param location The endpoint location attributes. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withLocation(EndpointLocation location) { this.location = location; return this; } /** * Custom metrics that your app reports to Amazon Pinpoint. * * @return Custom metrics that your app reports to Amazon Pinpoint. */ public java.util.Map<String, Double> getMetrics() { return metrics; } /** * Custom metrics that your app reports to Amazon Pinpoint. * * @param metrics Custom metrics that your app reports to Amazon Pinpoint. */ public void setMetrics(java.util.Map<String, Double> metrics) { this.metrics = metrics; } /** * Custom metrics that your app reports to Amazon Pinpoint. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param metrics Custom metrics that your app reports to Amazon Pinpoint. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withMetrics(java.util.Map<String, Double> metrics) { this.metrics = metrics; return this; } /** * Custom metrics that your app reports to Amazon Pinpoint. * <p> * The method adds a new key-value pair into Metrics parameter, and returns * a reference to this object so that method calls can be chained together. * * @param key The key of the entry to be added into Metrics. * @param value The corresponding value of the entry to be added into * Metrics. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse addMetricsEntry(String key, Double value) { if (null == this.metrics) { this.metrics = new java.util.HashMap<String, Double>(); } if (this.metrics.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.metrics.put(key, value); return this; } /** * Removes all the entries added into Metrics. * <p> * Returns a reference to this object so that method calls can be chained * together. */ public EndpointResponse clearMetricsEntries() { this.metrics = null; return this; } /** * Indicates whether a user has opted out of receiving messages with one of * the following values: ALL – User receives all messages. NONE – User * receives no messages. * * @return Indicates whether a user has opted out of receiving messages with * one of the following values: ALL – User receives all messages. * NONE – User receives no messages. */ public String getOptOut() { return optOut; } /** * Indicates whether a user has opted out of receiving messages with one of * the following values: ALL – User receives all messages. NONE – User * receives no messages. * * @param optOut Indicates whether a user has opted out of receiving * messages with one of the following values: ALL – User * receives all messages. NONE – User receives no messages. */ public void setOptOut(String optOut) { this.optOut = optOut; } /** * Indicates whether a user has opted out of receiving messages with one of * the following values: ALL – User receives all messages. NONE – User * receives no messages. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param optOut Indicates whether a user has opted out of receiving * messages with one of the following values: ALL – User * receives all messages. NONE – User receives no messages. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withOptOut(String optOut) { this.optOut = optOut; return this; } /** * The unique ID for the most recent request to update the endpoint. * * @return The unique ID for the most recent request to update the endpoint. */ public String getRequestId() { return requestId; } /** * The unique ID for the most recent request to update the endpoint. * * @param requestId The unique ID for the most recent request to update the * endpoint. */ public void setRequestId(String requestId) { this.requestId = requestId; } /** * The unique ID for the most recent request to update the endpoint. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param requestId The unique ID for the most recent request to update the * endpoint. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withRequestId(String requestId) { this.requestId = requestId; return this; } /** * The ShardId of endpoint * * @return The ShardId of endpoint */ public String getShardId() { return shardId; } /** * The ShardId of endpoint * * @param shardId The ShardId of endpoint */ public void setShardId(String shardId) { this.shardId = shardId; } /** * The ShardId of endpoint * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param shardId The ShardId of endpoint * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withShardId(String shardId) { this.shardId = shardId; return this; } /** * Custom user-specific attributes that your app reports to Amazon Pinpoint. * * @return Custom user-specific attributes that your app reports to Amazon * Pinpoint. */ public EndpointUser getUser() { return user; } /** * Custom user-specific attributes that your app reports to Amazon Pinpoint. * * @param user Custom user-specific attributes that your app reports to * Amazon Pinpoint. */ public void setUser(EndpointUser user) { this.user = user; } /** * Custom user-specific attributes that your app reports to Amazon Pinpoint. * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param user Custom user-specific attributes that your app reports to * Amazon Pinpoint. * @return A reference to this updated object so that method calls can be * chained together. */ public EndpointResponse withUser(EndpointUser user) { this.user = user; 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 (getAddress() != null) sb.append("Address: " + getAddress() + ","); if (getApplicationId() != null) sb.append("ApplicationId: " + getApplicationId() + ","); if (getAttributes() != null) sb.append("Attributes: " + getAttributes() + ","); if (getChannelType() != null) sb.append("ChannelType: " + getChannelType() + ","); if (getCohortId() != null) sb.append("CohortId: " + getCohortId() + ","); if (getCreationDate() != null) sb.append("CreationDate: " + getCreationDate() + ","); if (getDemographic() != null) sb.append("Demographic: " + getDemographic() + ","); if (getEffectiveDate() != null) sb.append("EffectiveDate: " + getEffectiveDate() + ","); if (getEndpointStatus() != null) sb.append("EndpointStatus: " + getEndpointStatus() + ","); if (getId() != null) sb.append("Id: " + getId() + ","); if (getLocation() != null) sb.append("Location: " + getLocation() + ","); if (getMetrics() != null) sb.append("Metrics: " + getMetrics() + ","); if (getOptOut() != null) sb.append("OptOut: " + getOptOut() + ","); if (getRequestId() != null) sb.append("RequestId: " + getRequestId() + ","); if (getShardId() != null) sb.append("ShardId: " + getShardId() + ","); if (getUser() != null) sb.append("User: " + getUser()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAddress() == null) ? 0 : getAddress().hashCode()); hashCode = prime * hashCode + ((getApplicationId() == null) ? 0 : getApplicationId().hashCode()); hashCode = prime * hashCode + ((getAttributes() == null) ? 0 : getAttributes().hashCode()); hashCode = prime * hashCode + ((getChannelType() == null) ? 0 : getChannelType().hashCode()); hashCode = prime * hashCode + ((getCohortId() == null) ? 0 : getCohortId().hashCode()); hashCode = prime * hashCode + ((getCreationDate() == null) ? 0 : getCreationDate().hashCode()); hashCode = prime * hashCode + ((getDemographic() == null) ? 0 : getDemographic().hashCode()); hashCode = prime * hashCode + ((getEffectiveDate() == null) ? 0 : getEffectiveDate().hashCode()); hashCode = prime * hashCode + ((getEndpointStatus() == null) ? 0 : getEndpointStatus().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getLocation() == null) ? 0 : getLocation().hashCode()); hashCode = prime * hashCode + ((getMetrics() == null) ? 0 : getMetrics().hashCode()); hashCode = prime * hashCode + ((getOptOut() == null) ? 0 : getOptOut().hashCode()); hashCode = prime * hashCode + ((getRequestId() == null) ? 0 : getRequestId().hashCode()); hashCode = prime * hashCode + ((getShardId() == null) ? 0 : getShardId().hashCode()); hashCode = prime * hashCode + ((getUser() == null) ? 0 : getUser().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof EndpointResponse == false) return false; EndpointResponse other = (EndpointResponse) obj; if (other.getAddress() == null ^ this.getAddress() == null) return false; if (other.getAddress() != null && other.getAddress().equals(this.getAddress()) == false) return false; if (other.getApplicationId() == null ^ this.getApplicationId() == null) return false; if (other.getApplicationId() != null && other.getApplicationId().equals(this.getApplicationId()) == false) return false; if (other.getAttributes() == null ^ this.getAttributes() == null) return false; if (other.getAttributes() != null && other.getAttributes().equals(this.getAttributes()) == false) return false; if (other.getChannelType() == null ^ this.getChannelType() == null) return false; if (other.getChannelType() != null && other.getChannelType().equals(this.getChannelType()) == false) return false; if (other.getCohortId() == null ^ this.getCohortId() == null) return false; if (other.getCohortId() != null && other.getCohortId().equals(this.getCohortId()) == false) return false; if (other.getCreationDate() == null ^ this.getCreationDate() == null) return false; if (other.getCreationDate() != null && other.getCreationDate().equals(this.getCreationDate()) == false) return false; if (other.getDemographic() == null ^ this.getDemographic() == null) return false; if (other.getDemographic() != null && other.getDemographic().equals(this.getDemographic()) == false) return false; if (other.getEffectiveDate() == null ^ this.getEffectiveDate() == null) return false; if (other.getEffectiveDate() != null && other.getEffectiveDate().equals(this.getEffectiveDate()) == false) return false; if (other.getEndpointStatus() == null ^ this.getEndpointStatus() == null) return false; if (other.getEndpointStatus() != null && other.getEndpointStatus().equals(this.getEndpointStatus()) == false) return false; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getLocation() == null ^ this.getLocation() == null) return false; if (other.getLocation() != null && other.getLocation().equals(this.getLocation()) == false) return false; if (other.getMetrics() == null ^ this.getMetrics() == null) return false; if (other.getMetrics() != null && other.getMetrics().equals(this.getMetrics()) == false) return false; if (other.getOptOut() == null ^ this.getOptOut() == null) return false; if (other.getOptOut() != null && other.getOptOut().equals(this.getOptOut()) == false) return false; if (other.getRequestId() == null ^ this.getRequestId() == null) return false; if (other.getRequestId() != null && other.getRequestId().equals(this.getRequestId()) == false) return false; if (other.getShardId() == null ^ this.getShardId() == null) return false; if (other.getShardId() != null && other.getShardId().equals(this.getShardId()) == false) return false; if (other.getUser() == null ^ this.getUser() == null) return false; if (other.getUser() != null && other.getUser().equals(this.getUser()) == false) return false; return true; } }