com.amazonaws.services.cloudfront_2012_03_15.model.TrustedSigners Maven / Gradle / Ivy
Show all versions of aws-java-sdk Show documentation
/*
* 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.cloudfront_2012_03_15.model;
/**
*
* The trusted signers of the URL.
*
*/
public class TrustedSigners {
/**
* Include this empty element if you want to give your own AWS account
* permission to create signed URLs.
*/
private String self;
/**
* Specifies an AWS account that can create signed URLs. Remove the
* dashes. You can specify up to five accounts, each with its own
* AwsAccountNumber element.
*/
private java.util.List awsAccountNumbers;
/**
* Default constructor for a new TrustedSigners object. Callers should use the
* setter or fluent setter (with...) methods to initialize this object after creating it.
*/
public TrustedSigners() {}
/**
* Constructs a new TrustedSigners object.
* Callers should use the setter or fluent setter (with...) methods to
* initialize any additional object members.
*
* @param awsAccountNumbers Specifies an AWS account that can create
* signed URLs. Remove the dashes. You can specify up to five accounts,
* each with its own AwsAccountNumber element.
*/
public TrustedSigners(java.util.List awsAccountNumbers) {
this.awsAccountNumbers = awsAccountNumbers;
}
/**
* Include this empty element if you want to give your own AWS account
* permission to create signed URLs.
*
* @return Include this empty element if you want to give your own AWS account
* permission to create signed URLs.
*/
public String getSelf() {
return self;
}
/**
* Include this empty element if you want to give your own AWS account
* permission to create signed URLs.
*
* @param self Include this empty element if you want to give your own AWS account
* permission to create signed URLs.
*/
public void setSelf(String self) {
this.self = self;
}
/**
* Include this empty element if you want to give your own AWS account
* permission to create signed URLs.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param self Include this empty element if you want to give your own AWS account
* permission to create signed URLs.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public TrustedSigners withSelf(String self) {
this.self = self;
return this;
}
/**
* Specifies an AWS account that can create signed URLs. Remove the
* dashes. You can specify up to five accounts, each with its own
* AwsAccountNumber element.
*
* @return Specifies an AWS account that can create signed URLs. Remove the
* dashes. You can specify up to five accounts, each with its own
* AwsAccountNumber element.
*/
public java.util.List getAwsAccountNumbers() {
if (awsAccountNumbers == null) {
awsAccountNumbers = new java.util.ArrayList();
}
return awsAccountNumbers;
}
/**
* Specifies an AWS account that can create signed URLs. Remove the
* dashes. You can specify up to five accounts, each with its own
* AwsAccountNumber element.
*
* @param awsAccountNumbers Specifies an AWS account that can create signed URLs. Remove the
* dashes. You can specify up to five accounts, each with its own
* AwsAccountNumber element.
*/
public void setAwsAccountNumbers(java.util.Collection awsAccountNumbers) {
if (awsAccountNumbers == null) {
this.awsAccountNumbers = null;
return;
}
java.util.List awsAccountNumbersCopy = new java.util.ArrayList(awsAccountNumbers.size());
awsAccountNumbersCopy.addAll(awsAccountNumbers);
this.awsAccountNumbers = awsAccountNumbersCopy;
}
/**
* Specifies an AWS account that can create signed URLs. Remove the
* dashes. You can specify up to five accounts, each with its own
* AwsAccountNumber element.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param awsAccountNumbers Specifies an AWS account that can create signed URLs. Remove the
* dashes. You can specify up to five accounts, each with its own
* AwsAccountNumber element.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public TrustedSigners withAwsAccountNumbers(String... awsAccountNumbers) {
if (getAwsAccountNumbers() == null) setAwsAccountNumbers(new java.util.ArrayList(awsAccountNumbers.length));
for (String value : awsAccountNumbers) {
getAwsAccountNumbers().add(value);
}
return this;
}
/**
* Specifies an AWS account that can create signed URLs. Remove the
* dashes. You can specify up to five accounts, each with its own
* AwsAccountNumber element.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param awsAccountNumbers Specifies an AWS account that can create signed URLs. Remove the
* dashes. You can specify up to five accounts, each with its own
* AwsAccountNumber element.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public TrustedSigners withAwsAccountNumbers(java.util.Collection awsAccountNumbers) {
if (awsAccountNumbers == null) {
this.awsAccountNumbers = null;
} else {
java.util.List awsAccountNumbersCopy = new java.util.ArrayList(awsAccountNumbers.size());
awsAccountNumbersCopy.addAll(awsAccountNumbers);
this.awsAccountNumbers = awsAccountNumbersCopy;
}
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 (self != null) sb.append("Self: " + self + ", ");
if (awsAccountNumbers != null) sb.append("AwsAccountNumbers: " + awsAccountNumbers + ", ");
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getSelf() == null) ? 0 : getSelf().hashCode());
hashCode = prime * hashCode + ((getAwsAccountNumbers() == null) ? 0 : getAwsAccountNumbers().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof TrustedSigners == false) return false;
TrustedSigners other = (TrustedSigners)obj;
if (other.getSelf() == null ^ this.getSelf() == null) return false;
if (other.getSelf() != null && other.getSelf().equals(this.getSelf()) == false) return false;
if (other.getAwsAccountNumbers() == null ^ this.getAwsAccountNumbers() == null) return false;
if (other.getAwsAccountNumbers() != null && other.getAwsAccountNumbers().equals(this.getAwsAccountNumbers()) == false) return false;
return true;
}
}