org.openmetadata.schema.tests.ResultSummary Maven / Gradle / Ivy
package org.openmetadata.schema.tests;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.annotation.processing.Generated;
import javax.validation.Valid;
import javax.validation.constraints.Size;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.openmetadata.schema.tests.type.TestCaseStatus;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"testCaseName",
"status",
"timestamp"
})
@Generated("jsonschema2pojo")
public class ResultSummary {
/**
* A unique name that identifies an entity. Example for table 'DatabaseService.Database.Schema.Table'.
*
*/
@JsonProperty("testCaseName")
@JsonPropertyDescription("A unique name that identifies an entity. Example for table 'DatabaseService.Database.Schema.Table'.")
@Size(min = 1, max = 3072)
private String testCaseName;
/**
* Status of Test Case run.
*
*/
@JsonProperty("status")
@JsonPropertyDescription("Status of Test Case run.")
private TestCaseStatus status;
/**
* Timestamp in Unix epoch time milliseconds.@om-field-type
*
*/
@JsonProperty("timestamp")
@JsonPropertyDescription("Timestamp in Unix epoch time milliseconds.")
private Long timestamp;
@JsonIgnore
@Valid
private Map additionalProperties = new LinkedHashMap();
/**
* A unique name that identifies an entity. Example for table 'DatabaseService.Database.Schema.Table'.
*
*/
@JsonProperty("testCaseName")
public String getTestCaseName() {
return testCaseName;
}
/**
* A unique name that identifies an entity. Example for table 'DatabaseService.Database.Schema.Table'.
*
*/
@JsonProperty("testCaseName")
public void setTestCaseName(String testCaseName) {
this.testCaseName = testCaseName;
}
public ResultSummary withTestCaseName(String testCaseName) {
this.testCaseName = testCaseName;
return this;
}
/**
* Status of Test Case run.
*
*/
@JsonProperty("status")
public TestCaseStatus getStatus() {
return status;
}
/**
* Status of Test Case run.
*
*/
@JsonProperty("status")
public void setStatus(TestCaseStatus status) {
this.status = status;
}
public ResultSummary withStatus(TestCaseStatus status) {
this.status = status;
return this;
}
/**
* Timestamp in Unix epoch time milliseconds.@om-field-type
*
*/
@JsonProperty("timestamp")
public Long getTimestamp() {
return timestamp;
}
/**
* Timestamp in Unix epoch time milliseconds.@om-field-type
*
*/
@JsonProperty("timestamp")
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public ResultSummary withTimestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
public ResultSummary withAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(ResultSummary.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("testCaseName");
sb.append('=');
sb.append(((this.testCaseName == null)?"":this.testCaseName));
sb.append(',');
sb.append("status");
sb.append('=');
sb.append(((this.status == null)?"":this.status));
sb.append(',');
sb.append("timestamp");
sb.append('=');
sb.append(((this.timestamp == null)?"":this.timestamp));
sb.append(',');
sb.append("additionalProperties");
sb.append('=');
sb.append(((this.additionalProperties == null)?"":this.additionalProperties));
sb.append(',');
if (sb.charAt((sb.length()- 1)) == ',') {
sb.setCharAt((sb.length()- 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}
@Override
public int hashCode() {
int result = 1;
result = ((result* 31)+((this.testCaseName == null)? 0 :this.testCaseName.hashCode()));
result = ((result* 31)+((this.additionalProperties == null)? 0 :this.additionalProperties.hashCode()));
result = ((result* 31)+((this.status == null)? 0 :this.status.hashCode()));
result = ((result* 31)+((this.timestamp == null)? 0 :this.timestamp.hashCode()));
return result;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof ResultSummary) == false) {
return false;
}
ResultSummary rhs = ((ResultSummary) other);
return (((((this.testCaseName == rhs.testCaseName)||((this.testCaseName!= null)&&this.testCaseName.equals(rhs.testCaseName)))&&((this.additionalProperties == rhs.additionalProperties)||((this.additionalProperties!= null)&&this.additionalProperties.equals(rhs.additionalProperties))))&&((this.status == rhs.status)||((this.status!= null)&&this.status.equals(rhs.status))))&&((this.timestamp == rhs.timestamp)||((this.timestamp!= null)&&this.timestamp.equals(rhs.timestamp))));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy