All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.simpleemail.model.Destination Maven / Gradle / Ivy

Go to download

The Amazon Web Services SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

The newest version!
/*
 * Copyright 2010-2014 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.simpleemail.model;

import java.io.Serializable;

/**
 * 

* Represents the destination of the message, consisting of To:, CC:, and * BCC: fields. *

*

* By default, the string must be 7-bit ASCII. If the text must contain * any other characters, then you must use MIME encoded-word syntax (RFC * 2047) instead of a literal string. MIME encoded-word syntax uses the * following form: =?charset?encoding?encoded-text?= . * For more information, see * RFC 2047 * . *

*/ public class Destination implements Serializable { /** * The To: field(s) of the message. */ private com.amazonaws.internal.ListWithAutoConstructFlag toAddresses; /** * The CC: field(s) of the message. */ private com.amazonaws.internal.ListWithAutoConstructFlag ccAddresses; /** * The BCC: field(s) of the message. */ private com.amazonaws.internal.ListWithAutoConstructFlag bccAddresses; /** * Default constructor for a new Destination object. Callers should use the * setter or fluent setter (with...) methods to initialize this object after creating it. */ public Destination() {} /** * Constructs a new Destination object. * Callers should use the setter or fluent setter (with...) methods to * initialize any additional object members. * * @param toAddresses The To: field(s) of the message. */ public Destination(java.util.List toAddresses) { setToAddresses(toAddresses); } /** * The To: field(s) of the message. * * @return The To: field(s) of the message. */ public java.util.List getToAddresses() { if (toAddresses == null) { toAddresses = new com.amazonaws.internal.ListWithAutoConstructFlag(); toAddresses.setAutoConstruct(true); } return toAddresses; } /** * The To: field(s) of the message. * * @param toAddresses The To: field(s) of the message. */ public void setToAddresses(java.util.Collection toAddresses) { if (toAddresses == null) { this.toAddresses = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag toAddressesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(toAddresses.size()); toAddressesCopy.addAll(toAddresses); this.toAddresses = toAddressesCopy; } /** * The To: field(s) of the message. *

* Returns a reference to this object so that method calls can be chained together. * * @param toAddresses The To: field(s) of the message. * * @return A reference to this updated object so that method calls can be chained * together. */ public Destination withToAddresses(String... toAddresses) { if (getToAddresses() == null) setToAddresses(new java.util.ArrayList(toAddresses.length)); for (String value : toAddresses) { getToAddresses().add(value); } return this; } /** * The To: field(s) of the message. *

* Returns a reference to this object so that method calls can be chained together. * * @param toAddresses The To: field(s) of the message. * * @return A reference to this updated object so that method calls can be chained * together. */ public Destination withToAddresses(java.util.Collection toAddresses) { if (toAddresses == null) { this.toAddresses = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag toAddressesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(toAddresses.size()); toAddressesCopy.addAll(toAddresses); this.toAddresses = toAddressesCopy; } return this; } /** * The CC: field(s) of the message. * * @return The CC: field(s) of the message. */ public java.util.List getCcAddresses() { if (ccAddresses == null) { ccAddresses = new com.amazonaws.internal.ListWithAutoConstructFlag(); ccAddresses.setAutoConstruct(true); } return ccAddresses; } /** * The CC: field(s) of the message. * * @param ccAddresses The CC: field(s) of the message. */ public void setCcAddresses(java.util.Collection ccAddresses) { if (ccAddresses == null) { this.ccAddresses = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag ccAddressesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(ccAddresses.size()); ccAddressesCopy.addAll(ccAddresses); this.ccAddresses = ccAddressesCopy; } /** * The CC: field(s) of the message. *

* Returns a reference to this object so that method calls can be chained together. * * @param ccAddresses The CC: field(s) of the message. * * @return A reference to this updated object so that method calls can be chained * together. */ public Destination withCcAddresses(String... ccAddresses) { if (getCcAddresses() == null) setCcAddresses(new java.util.ArrayList(ccAddresses.length)); for (String value : ccAddresses) { getCcAddresses().add(value); } return this; } /** * The CC: field(s) of the message. *

* Returns a reference to this object so that method calls can be chained together. * * @param ccAddresses The CC: field(s) of the message. * * @return A reference to this updated object so that method calls can be chained * together. */ public Destination withCcAddresses(java.util.Collection ccAddresses) { if (ccAddresses == null) { this.ccAddresses = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag ccAddressesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(ccAddresses.size()); ccAddressesCopy.addAll(ccAddresses); this.ccAddresses = ccAddressesCopy; } return this; } /** * The BCC: field(s) of the message. * * @return The BCC: field(s) of the message. */ public java.util.List getBccAddresses() { if (bccAddresses == null) { bccAddresses = new com.amazonaws.internal.ListWithAutoConstructFlag(); bccAddresses.setAutoConstruct(true); } return bccAddresses; } /** * The BCC: field(s) of the message. * * @param bccAddresses The BCC: field(s) of the message. */ public void setBccAddresses(java.util.Collection bccAddresses) { if (bccAddresses == null) { this.bccAddresses = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag bccAddressesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(bccAddresses.size()); bccAddressesCopy.addAll(bccAddresses); this.bccAddresses = bccAddressesCopy; } /** * The BCC: field(s) of the message. *

* Returns a reference to this object so that method calls can be chained together. * * @param bccAddresses The BCC: field(s) of the message. * * @return A reference to this updated object so that method calls can be chained * together. */ public Destination withBccAddresses(String... bccAddresses) { if (getBccAddresses() == null) setBccAddresses(new java.util.ArrayList(bccAddresses.length)); for (String value : bccAddresses) { getBccAddresses().add(value); } return this; } /** * The BCC: field(s) of the message. *

* Returns a reference to this object so that method calls can be chained together. * * @param bccAddresses The BCC: field(s) of the message. * * @return A reference to this updated object so that method calls can be chained * together. */ public Destination withBccAddresses(java.util.Collection bccAddresses) { if (bccAddresses == null) { this.bccAddresses = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag bccAddressesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(bccAddresses.size()); bccAddressesCopy.addAll(bccAddresses); this.bccAddresses = bccAddressesCopy; } 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 (getToAddresses() != null) sb.append("ToAddresses: " + getToAddresses() + ","); if (getCcAddresses() != null) sb.append("CcAddresses: " + getCcAddresses() + ","); if (getBccAddresses() != null) sb.append("BccAddresses: " + getBccAddresses() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getToAddresses() == null) ? 0 : getToAddresses().hashCode()); hashCode = prime * hashCode + ((getCcAddresses() == null) ? 0 : getCcAddresses().hashCode()); hashCode = prime * hashCode + ((getBccAddresses() == null) ? 0 : getBccAddresses().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Destination == false) return false; Destination other = (Destination)obj; if (other.getToAddresses() == null ^ this.getToAddresses() == null) return false; if (other.getToAddresses() != null && other.getToAddresses().equals(this.getToAddresses()) == false) return false; if (other.getCcAddresses() == null ^ this.getCcAddresses() == null) return false; if (other.getCcAddresses() != null && other.getCcAddresses().equals(this.getCcAddresses()) == false) return false; if (other.getBccAddresses() == null ^ this.getBccAddresses() == null) return false; if (other.getBccAddresses() != null && other.getBccAddresses().equals(this.getBccAddresses()) == false) return false; return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy