
com.amazonaws.services.route53.model.StatusReport Maven / Gradle / Ivy
Show all versions of aws-java-sdk-route53 Show documentation
/*
* Copyright 2011-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.route53.model;
import java.io.Serializable;
/**
*
* A complex type that contains the status that one Amazon Route 53 health
* checker reports and the time of the health check.
*
*/
public class StatusReport implements Serializable, Cloneable {
/**
*
* A description of the status of the health check endpoint as reported by
* one of the Amazon Route 53 health checkers.
*
*/
private String status;
/**
*
* The time at which the health checker performed the health check in ISO 8601 format and
* Coordinated Universal Time (UTC). For example, the value
* 2014-10-27T17:48:16.751Z
represents October 27, 2014 at
* 17:48:16.751 UTC.
*
*/
private java.util.Date checkedTime;
/**
*
* A description of the status of the health check endpoint as reported by
* one of the Amazon Route 53 health checkers.
*
*
* @param status
* A description of the status of the health check endpoint as
* reported by one of the Amazon Route 53 health checkers.
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* A description of the status of the health check endpoint as reported by
* one of the Amazon Route 53 health checkers.
*
*
* @return A description of the status of the health check endpoint as
* reported by one of the Amazon Route 53 health checkers.
*/
public String getStatus() {
return this.status;
}
/**
*
* A description of the status of the health check endpoint as reported by
* one of the Amazon Route 53 health checkers.
*
*
* @param status
* A description of the status of the health check endpoint as
* reported by one of the Amazon Route 53 health checkers.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public StatusReport withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* The time at which the health checker performed the health check in ISO 8601 format and
* Coordinated Universal Time (UTC). For example, the value
* 2014-10-27T17:48:16.751Z
represents October 27, 2014 at
* 17:48:16.751 UTC.
*
*
* @param checkedTime
* The time at which the health checker performed the health check in
* ISO 8601
* format and Coordinated Universal Time (UTC). For example, the
* value 2014-10-27T17:48:16.751Z
represents October 27,
* 2014 at 17:48:16.751 UTC.
*/
public void setCheckedTime(java.util.Date checkedTime) {
this.checkedTime = checkedTime;
}
/**
*
* The time at which the health checker performed the health check in ISO 8601 format and
* Coordinated Universal Time (UTC). For example, the value
* 2014-10-27T17:48:16.751Z
represents October 27, 2014 at
* 17:48:16.751 UTC.
*
*
* @return The time at which the health checker performed the health check
* in ISO 8601
* format and Coordinated Universal Time (UTC). For example, the
* value 2014-10-27T17:48:16.751Z
represents October
* 27, 2014 at 17:48:16.751 UTC.
*/
public java.util.Date getCheckedTime() {
return this.checkedTime;
}
/**
*
* The time at which the health checker performed the health check in ISO 8601 format and
* Coordinated Universal Time (UTC). For example, the value
* 2014-10-27T17:48:16.751Z
represents October 27, 2014 at
* 17:48:16.751 UTC.
*
*
* @param checkedTime
* The time at which the health checker performed the health check in
* ISO 8601
* format and Coordinated Universal Time (UTC). For example, the
* value 2014-10-27T17:48:16.751Z
represents October 27,
* 2014 at 17:48:16.751 UTC.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public StatusReport withCheckedTime(java.util.Date checkedTime) {
setCheckedTime(checkedTime);
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 (getStatus() != null)
sb.append("Status: " + getStatus() + ",");
if (getCheckedTime() != null)
sb.append("CheckedTime: " + getCheckedTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof StatusReport == false)
return false;
StatusReport other = (StatusReport) obj;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null
&& other.getStatus().equals(this.getStatus()) == false)
return false;
if (other.getCheckedTime() == null ^ this.getCheckedTime() == null)
return false;
if (other.getCheckedTime() != null
&& other.getCheckedTime().equals(this.getCheckedTime()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode
+ ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime
* hashCode
+ ((getCheckedTime() == null) ? 0 : getCheckedTime().hashCode());
return hashCode;
}
@Override
public StatusReport clone() {
try {
return (StatusReport) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!", e);
}
}
}