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

* Status of the application - Not Started, In-Progress, Complete. *

*/ private String applicationStatus; /** *

* The timestamp when the application status was last updated. *

*/ private java.util.Date lastUpdatedTime; /** *

* Status of the application - Not Started, In-Progress, Complete. *

* * @param applicationStatus * Status of the application - Not Started, In-Progress, Complete. * @see ApplicationStatus */ public void setApplicationStatus(String applicationStatus) { this.applicationStatus = applicationStatus; } /** *

* Status of the application - Not Started, In-Progress, Complete. *

* * @return Status of the application - Not Started, In-Progress, Complete. * @see ApplicationStatus */ public String getApplicationStatus() { return this.applicationStatus; } /** *

* Status of the application - Not Started, In-Progress, Complete. *

* * @param applicationStatus * Status of the application - Not Started, In-Progress, Complete. * @return Returns a reference to this object so that method calls can be chained together. * @see ApplicationStatus */ public DescribeApplicationStateResult withApplicationStatus(String applicationStatus) { setApplicationStatus(applicationStatus); return this; } /** *

* Status of the application - Not Started, In-Progress, Complete. *

* * @param applicationStatus * Status of the application - Not Started, In-Progress, Complete. * @return Returns a reference to this object so that method calls can be chained together. * @see ApplicationStatus */ public DescribeApplicationStateResult withApplicationStatus(ApplicationStatus applicationStatus) { this.applicationStatus = applicationStatus.toString(); return this; } /** *

* The timestamp when the application status was last updated. *

* * @param lastUpdatedTime * The timestamp when the application status was last updated. */ public void setLastUpdatedTime(java.util.Date lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; } /** *

* The timestamp when the application status was last updated. *

* * @return The timestamp when the application status was last updated. */ public java.util.Date getLastUpdatedTime() { return this.lastUpdatedTime; } /** *

* The timestamp when the application status was last updated. *

* * @param lastUpdatedTime * The timestamp when the application status was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeApplicationStateResult withLastUpdatedTime(java.util.Date lastUpdatedTime) { setLastUpdatedTime(lastUpdatedTime); 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 (getApplicationStatus() != null) sb.append("ApplicationStatus: ").append(getApplicationStatus()).append(","); if (getLastUpdatedTime() != null) sb.append("LastUpdatedTime: ").append(getLastUpdatedTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeApplicationStateResult == false) return false; DescribeApplicationStateResult other = (DescribeApplicationStateResult) obj; if (other.getApplicationStatus() == null ^ this.getApplicationStatus() == null) return false; if (other.getApplicationStatus() != null && other.getApplicationStatus().equals(this.getApplicationStatus()) == false) return false; if (other.getLastUpdatedTime() == null ^ this.getLastUpdatedTime() == null) return false; if (other.getLastUpdatedTime() != null && other.getLastUpdatedTime().equals(this.getLastUpdatedTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getApplicationStatus() == null) ? 0 : getApplicationStatus().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedTime() == null) ? 0 : getLastUpdatedTime().hashCode()); return hashCode; } @Override public DescribeApplicationStateResult clone() { try { return (DescribeApplicationStateResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }