com.amazonaws.services.cloudfront_2012_03_15.model.CustomOrigin 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;
/**
*
* A customer origin.
*
*/
public class CustomOrigin {
/**
* The origin to associate with the distribution.
*/
private String dNSName;
/**
* The HTTP port the custom origin listens on.
*/
private Integer hTTPPort;
/**
* The HTTPS port the custom origin listens on.
*/
private Integer hTTPSPort;
/**
* The origin protocol policy to apply to your origin.
*
* Constraints:
* Allowed Values: http-only, match-viewer
*/
private String originProtocolPolicy;
/**
* Default constructor for a new CustomOrigin object. Callers should use the
* setter or fluent setter (with...) methods to initialize this object after creating it.
*/
public CustomOrigin() {}
/**
* Constructs a new CustomOrigin object.
* Callers should use the setter or fluent setter (with...) methods to
* initialize any additional object members.
*
* @param dNSName The origin to associate with the distribution.
* @param originProtocolPolicy The origin protocol policy to apply to
* your origin.
*/
public CustomOrigin(String dNSName, String originProtocolPolicy) {
this.dNSName = dNSName;
this.originProtocolPolicy = originProtocolPolicy;
}
/**
* Constructs a new CustomOrigin object.
* Callers should use the setter or fluent setter (with...) methods to
* initialize any additional object members.
*
* @param dNSName The origin to associate with the distribution.
* @param originProtocolPolicy The origin protocol policy to apply to
* your origin.
*/
public CustomOrigin(String dNSName, OriginProtocolPolicy originProtocolPolicy) {
this.dNSName = dNSName;
this.originProtocolPolicy = originProtocolPolicy.toString();
}
/**
* The origin to associate with the distribution.
*
* @return The origin to associate with the distribution.
*/
public String getDNSName() {
return dNSName;
}
/**
* The origin to associate with the distribution.
*
* @param dNSName The origin to associate with the distribution.
*/
public void setDNSName(String dNSName) {
this.dNSName = dNSName;
}
/**
* The origin to associate with the distribution.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param dNSName The origin to associate with the distribution.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public CustomOrigin withDNSName(String dNSName) {
this.dNSName = dNSName;
return this;
}
/**
* The HTTP port the custom origin listens on.
*
* @return The HTTP port the custom origin listens on.
*/
public Integer getHTTPPort() {
return hTTPPort;
}
/**
* The HTTP port the custom origin listens on.
*
* @param hTTPPort The HTTP port the custom origin listens on.
*/
public void setHTTPPort(Integer hTTPPort) {
this.hTTPPort = hTTPPort;
}
/**
* The HTTP port the custom origin listens on.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param hTTPPort The HTTP port the custom origin listens on.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public CustomOrigin withHTTPPort(Integer hTTPPort) {
this.hTTPPort = hTTPPort;
return this;
}
/**
* The HTTPS port the custom origin listens on.
*
* @return The HTTPS port the custom origin listens on.
*/
public Integer getHTTPSPort() {
return hTTPSPort;
}
/**
* The HTTPS port the custom origin listens on.
*
* @param hTTPSPort The HTTPS port the custom origin listens on.
*/
public void setHTTPSPort(Integer hTTPSPort) {
this.hTTPSPort = hTTPSPort;
}
/**
* The HTTPS port the custom origin listens on.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param hTTPSPort The HTTPS port the custom origin listens on.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public CustomOrigin withHTTPSPort(Integer hTTPSPort) {
this.hTTPSPort = hTTPSPort;
return this;
}
/**
* The origin protocol policy to apply to your origin.
*
* Constraints:
* Allowed Values: http-only, match-viewer
*
* @return The origin protocol policy to apply to your origin.
*
* @see OriginProtocolPolicy
*/
public String getOriginProtocolPolicy() {
return originProtocolPolicy;
}
/**
* The origin protocol policy to apply to your origin.
*
* Constraints:
* Allowed Values: http-only, match-viewer
*
* @param originProtocolPolicy The origin protocol policy to apply to your origin.
*
* @see OriginProtocolPolicy
*/
public void setOriginProtocolPolicy(String originProtocolPolicy) {
this.originProtocolPolicy = originProtocolPolicy;
}
/**
* The origin protocol policy to apply to your origin.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: http-only, match-viewer
*
* @param originProtocolPolicy The origin protocol policy to apply to your origin.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see OriginProtocolPolicy
*/
public CustomOrigin withOriginProtocolPolicy(String originProtocolPolicy) {
this.originProtocolPolicy = originProtocolPolicy;
return this;
}
/**
* The origin protocol policy to apply to your origin.
*
* Constraints:
* Allowed Values: http-only, match-viewer
*
* @param originProtocolPolicy The origin protocol policy to apply to your origin.
*
* @see OriginProtocolPolicy
*/
public void setOriginProtocolPolicy(OriginProtocolPolicy originProtocolPolicy) {
this.originProtocolPolicy = originProtocolPolicy.toString();
}
/**
* The origin protocol policy to apply to your origin.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Allowed Values: http-only, match-viewer
*
* @param originProtocolPolicy The origin protocol policy to apply to your origin.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*
* @see OriginProtocolPolicy
*/
public CustomOrigin withOriginProtocolPolicy(OriginProtocolPolicy originProtocolPolicy) {
this.originProtocolPolicy = originProtocolPolicy.toString();
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 (dNSName != null) sb.append("DNSName: " + dNSName + ", ");
if (hTTPPort != null) sb.append("HTTPPort: " + hTTPPort + ", ");
if (hTTPSPort != null) sb.append("HTTPSPort: " + hTTPSPort + ", ");
if (originProtocolPolicy != null) sb.append("OriginProtocolPolicy: " + originProtocolPolicy + ", ");
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDNSName() == null) ? 0 : getDNSName().hashCode());
hashCode = prime * hashCode + ((getHTTPPort() == null) ? 0 : getHTTPPort().hashCode());
hashCode = prime * hashCode + ((getHTTPSPort() == null) ? 0 : getHTTPSPort().hashCode());
hashCode = prime * hashCode + ((getOriginProtocolPolicy() == null) ? 0 : getOriginProtocolPolicy().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof CustomOrigin == false) return false;
CustomOrigin other = (CustomOrigin)obj;
if (other.getDNSName() == null ^ this.getDNSName() == null) return false;
if (other.getDNSName() != null && other.getDNSName().equals(this.getDNSName()) == false) return false;
if (other.getHTTPPort() == null ^ this.getHTTPPort() == null) return false;
if (other.getHTTPPort() != null && other.getHTTPPort().equals(this.getHTTPPort()) == false) return false;
if (other.getHTTPSPort() == null ^ this.getHTTPSPort() == null) return false;
if (other.getHTTPSPort() != null && other.getHTTPSPort().equals(this.getHTTPSPort()) == false) return false;
if (other.getOriginProtocolPolicy() == null ^ this.getOriginProtocolPolicy() == null) return false;
if (other.getOriginProtocolPolicy() != null && other.getOriginProtocolPolicy().equals(this.getOriginProtocolPolicy()) == false) return false;
return true;
}
}