/* * 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.chimesdkvoice.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DeleteVoiceConnectorTerminationCredentialsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The Voice Connector ID. *

*/ private String voiceConnectorId; /** *

* The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. *

*/ private java.util.List usernames; /** *

* The Voice Connector ID. *

* * @param voiceConnectorId * The Voice Connector ID. */ public void setVoiceConnectorId(String voiceConnectorId) { this.voiceConnectorId = voiceConnectorId; } /** *

* The Voice Connector ID. *

* * @return The Voice Connector ID. */ public String getVoiceConnectorId() { return this.voiceConnectorId; } /** *

* The Voice Connector ID. *

* * @param voiceConnectorId * The Voice Connector ID. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteVoiceConnectorTerminationCredentialsRequest withVoiceConnectorId(String voiceConnectorId) { setVoiceConnectorId(voiceConnectorId); return this; } /** *

* The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. *

* * @return The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. */ public java.util.List getUsernames() { return usernames; } /** *

* The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. *

* * @param usernames * The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. */ public void setUsernames(java.util.Collection usernames) { if (usernames == null) { this.usernames = null; return; } this.usernames = new java.util.ArrayList(usernames); } /** *

* The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setUsernames(java.util.Collection)} or {@link #withUsernames(java.util.Collection)} if you want to * override the existing values. *

* * @param usernames * The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteVoiceConnectorTerminationCredentialsRequest withUsernames(String... usernames) { if (this.usernames == null) { setUsernames(new java.util.ArrayList(usernames.length)); } for (String ele : usernames) { this.usernames.add(ele); } return this; } /** *

* The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. *

* * @param usernames * The RFC2617 compliant username associated with the SIP credentials, in US-ASCII format. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteVoiceConnectorTerminationCredentialsRequest withUsernames(java.util.Collection usernames) { setUsernames(usernames); 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 (getVoiceConnectorId() != null) sb.append("VoiceConnectorId: ").append(getVoiceConnectorId()).append(","); if (getUsernames() != null) sb.append("Usernames: ").append("***Sensitive Data Redacted***"); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DeleteVoiceConnectorTerminationCredentialsRequest == false) return false; DeleteVoiceConnectorTerminationCredentialsRequest other = (DeleteVoiceConnectorTerminationCredentialsRequest) obj; if (other.getVoiceConnectorId() == null ^ this.getVoiceConnectorId() == null) return false; if (other.getVoiceConnectorId() != null && other.getVoiceConnectorId().equals(this.getVoiceConnectorId()) == false) return false; if (other.getUsernames() == null ^ this.getUsernames() == null) return false; if (other.getUsernames() != null && other.getUsernames().equals(this.getUsernames()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getVoiceConnectorId() == null) ? 0 : getVoiceConnectorId().hashCode()); hashCode = prime * hashCode + ((getUsernames() == null) ? 0 : getUsernames().hashCode()); return hashCode; } @Override public DeleteVoiceConnectorTerminationCredentialsRequest clone() { return (DeleteVoiceConnectorTerminationCredentialsRequest) super.clone(); } }