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

com.amazonaws.services.apptest.model.TestConfigurationSummary Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Mainframe Modernization Application Testing module holds the client classes that are used for communicating with AWS Mainframe Modernization Application Testing Service

The newest version!
/*
 * Copyright 2019-2024 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.apptest.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Specifies a test configuration summary. *

* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class TestConfigurationSummary implements Serializable, Cloneable, StructuredPojo { /** *

* The test configuration ID of the test configuration summary. *

*/ private String testConfigurationId; /** *

* The name of the test configuration summary. *

*/ private String name; /** *

* The status reason of the test configuration summary. *

*/ private String statusReason; /** *

* The latest version of the test configuration summary. *

*/ private Integer latestVersion; /** *

* The test configuration ARN of the test configuration summary. *

*/ private String testConfigurationArn; /** *

* The status of the test configuration summary. *

*/ private String status; /** *

* The creation time of the test configuration summary. *

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

* The last update time of the test configuration summary. *

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

* The test configuration ID of the test configuration summary. *

* * @param testConfigurationId * The test configuration ID of the test configuration summary. */ public void setTestConfigurationId(String testConfigurationId) { this.testConfigurationId = testConfigurationId; } /** *

* The test configuration ID of the test configuration summary. *

* * @return The test configuration ID of the test configuration summary. */ public String getTestConfigurationId() { return this.testConfigurationId; } /** *

* The test configuration ID of the test configuration summary. *

* * @param testConfigurationId * The test configuration ID of the test configuration summary. * @return Returns a reference to this object so that method calls can be chained together. */ public TestConfigurationSummary withTestConfigurationId(String testConfigurationId) { setTestConfigurationId(testConfigurationId); return this; } /** *

* The name of the test configuration summary. *

* * @param name * The name of the test configuration summary. */ public void setName(String name) { this.name = name; } /** *

* The name of the test configuration summary. *

* * @return The name of the test configuration summary. */ public String getName() { return this.name; } /** *

* The name of the test configuration summary. *

* * @param name * The name of the test configuration summary. * @return Returns a reference to this object so that method calls can be chained together. */ public TestConfigurationSummary withName(String name) { setName(name); return this; } /** *

* The status reason of the test configuration summary. *

* * @param statusReason * The status reason of the test configuration summary. */ public void setStatusReason(String statusReason) { this.statusReason = statusReason; } /** *

* The status reason of the test configuration summary. *

* * @return The status reason of the test configuration summary. */ public String getStatusReason() { return this.statusReason; } /** *

* The status reason of the test configuration summary. *

* * @param statusReason * The status reason of the test configuration summary. * @return Returns a reference to this object so that method calls can be chained together. */ public TestConfigurationSummary withStatusReason(String statusReason) { setStatusReason(statusReason); return this; } /** *

* The latest version of the test configuration summary. *

* * @param latestVersion * The latest version of the test configuration summary. */ public void setLatestVersion(Integer latestVersion) { this.latestVersion = latestVersion; } /** *

* The latest version of the test configuration summary. *

* * @return The latest version of the test configuration summary. */ public Integer getLatestVersion() { return this.latestVersion; } /** *

* The latest version of the test configuration summary. *

* * @param latestVersion * The latest version of the test configuration summary. * @return Returns a reference to this object so that method calls can be chained together. */ public TestConfigurationSummary withLatestVersion(Integer latestVersion) { setLatestVersion(latestVersion); return this; } /** *

* The test configuration ARN of the test configuration summary. *

* * @param testConfigurationArn * The test configuration ARN of the test configuration summary. */ public void setTestConfigurationArn(String testConfigurationArn) { this.testConfigurationArn = testConfigurationArn; } /** *

* The test configuration ARN of the test configuration summary. *

* * @return The test configuration ARN of the test configuration summary. */ public String getTestConfigurationArn() { return this.testConfigurationArn; } /** *

* The test configuration ARN of the test configuration summary. *

* * @param testConfigurationArn * The test configuration ARN of the test configuration summary. * @return Returns a reference to this object so that method calls can be chained together. */ public TestConfigurationSummary withTestConfigurationArn(String testConfigurationArn) { setTestConfigurationArn(testConfigurationArn); return this; } /** *

* The status of the test configuration summary. *

* * @param status * The status of the test configuration summary. * @see TestConfigurationLifecycle */ public void setStatus(String status) { this.status = status; } /** *

* The status of the test configuration summary. *

* * @return The status of the test configuration summary. * @see TestConfigurationLifecycle */ public String getStatus() { return this.status; } /** *

* The status of the test configuration summary. *

* * @param status * The status of the test configuration summary. * @return Returns a reference to this object so that method calls can be chained together. * @see TestConfigurationLifecycle */ public TestConfigurationSummary withStatus(String status) { setStatus(status); return this; } /** *

* The status of the test configuration summary. *

* * @param status * The status of the test configuration summary. * @return Returns a reference to this object so that method calls can be chained together. * @see TestConfigurationLifecycle */ public TestConfigurationSummary withStatus(TestConfigurationLifecycle status) { this.status = status.toString(); return this; } /** *

* The creation time of the test configuration summary. *

* * @param creationTime * The creation time of the test configuration summary. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** *

* The creation time of the test configuration summary. *

* * @return The creation time of the test configuration summary. */ public java.util.Date getCreationTime() { return this.creationTime; } /** *

* The creation time of the test configuration summary. *

* * @param creationTime * The creation time of the test configuration summary. * @return Returns a reference to this object so that method calls can be chained together. */ public TestConfigurationSummary withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** *

* The last update time of the test configuration summary. *

* * @param lastUpdateTime * The last update time of the test configuration summary. */ public void setLastUpdateTime(java.util.Date lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; } /** *

* The last update time of the test configuration summary. *

* * @return The last update time of the test configuration summary. */ public java.util.Date getLastUpdateTime() { return this.lastUpdateTime; } /** *

* The last update time of the test configuration summary. *

* * @param lastUpdateTime * The last update time of the test configuration summary. * @return Returns a reference to this object so that method calls can be chained together. */ public TestConfigurationSummary withLastUpdateTime(java.util.Date lastUpdateTime) { setLastUpdateTime(lastUpdateTime); 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 (getTestConfigurationId() != null) sb.append("TestConfigurationId: ").append(getTestConfigurationId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getStatusReason() != null) sb.append("StatusReason: ").append(getStatusReason()).append(","); if (getLatestVersion() != null) sb.append("LatestVersion: ").append(getLatestVersion()).append(","); if (getTestConfigurationArn() != null) sb.append("TestConfigurationArn: ").append(getTestConfigurationArn()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getLastUpdateTime() != null) sb.append("LastUpdateTime: ").append(getLastUpdateTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TestConfigurationSummary == false) return false; TestConfigurationSummary other = (TestConfigurationSummary) obj; if (other.getTestConfigurationId() == null ^ this.getTestConfigurationId() == null) return false; if (other.getTestConfigurationId() != null && other.getTestConfigurationId().equals(this.getTestConfigurationId()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getStatusReason() == null ^ this.getStatusReason() == null) return false; if (other.getStatusReason() != null && other.getStatusReason().equals(this.getStatusReason()) == false) return false; if (other.getLatestVersion() == null ^ this.getLatestVersion() == null) return false; if (other.getLatestVersion() != null && other.getLatestVersion().equals(this.getLatestVersion()) == false) return false; if (other.getTestConfigurationArn() == null ^ this.getTestConfigurationArn() == null) return false; if (other.getTestConfigurationArn() != null && other.getTestConfigurationArn().equals(this.getTestConfigurationArn()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false) return false; if (other.getLastUpdateTime() == null ^ this.getLastUpdateTime() == null) return false; if (other.getLastUpdateTime() != null && other.getLastUpdateTime().equals(this.getLastUpdateTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTestConfigurationId() == null) ? 0 : getTestConfigurationId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getStatusReason() == null) ? 0 : getStatusReason().hashCode()); hashCode = prime * hashCode + ((getLatestVersion() == null) ? 0 : getLatestVersion().hashCode()); hashCode = prime * hashCode + ((getTestConfigurationArn() == null) ? 0 : getTestConfigurationArn().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getLastUpdateTime() == null) ? 0 : getLastUpdateTime().hashCode()); return hashCode; } @Override public TestConfigurationSummary clone() { try { return (TestConfigurationSummary) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.apptest.model.transform.TestConfigurationSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy