
com.slickqa.client.model.ResultReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slickqa-java-client Show documentation
Show all versions of slickqa-java-client Show documentation
Java client api for the slick test management tool.
The newest version!
package com.slickqa.client.model;
import java.util.Date;
public class ResultReference {
private String status = null;
/* A String representation of a BSON ObjectId */
private String resultId = null;
/* The number of milliseconds since EPOCH GMT */
private Date recorded = null;
private BuildReference build = null;
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getResultId() {
return resultId;
}
public void setResultId(String resultId) {
this.resultId = resultId;
}
public Date getRecorded() {
return recorded;
}
public void setRecorded(Date recorded) {
this.recorded = recorded;
}
public BuildReference getBuild() {
return build;
}
public void setBuild(BuildReference build) {
this.build = build;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ResultReference {\n");
sb.append(" status: ").append(status).append("\n");
sb.append(" resultId: ").append(resultId).append("\n");
sb.append(" recorded: ").append(recorded).append("\n");
sb.append(" build: ").append(build).append("\n");
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy