com.saucelabs.bamboo.sod.plan.JobInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bamboo-sauceondemand-plugin Show documentation
Show all versions of bamboo-sauceondemand-plugin Show documentation
This is the Sauce OnDemand plugin for Bamboo
The newest version!
package com.saucelabs.bamboo.sod.plan;
/**
* Simple class used to represent Sauce Job Id and corresponding HMAC token that is used
* for the display of embedded job results.
*
* @author Ross Rowe
*/
public class JobInformation {
private String jobId;
private String hmac;
private String status;
private String jobName;
public JobInformation(String jobId, String hmac) {
this.jobId = jobId;
this.hmac = hmac;
}
public String getHmac() {
return hmac;
}
public void setHmac(String hmac) {
this.hmac = hmac;
}
public String getJobId() {
return jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public void setStatus(String status) {
this.status = status;
}
public String getStatus() {
return status;
}
public String getJobName() {
return jobName;
}
public void setJobName(String jobName) {
this.jobName = jobName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy