org.whitesource.agent.api.dispatch.AsyncCheckPolicyComplianceStatusResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wss-agent-api Show documentation
Show all versions of wss-agent-api Show documentation
Java bindings for White Source API
package org.whitesource.agent.api.dispatch;
import java.io.Serializable;
public class AsyncCheckPolicyComplianceStatusResult implements Serializable {
/* --- Static Members --- */
private static final long serialVersionUID = -2767549958986147436L;
/* --- Members --- */
// stores the sha1 of the euaDep.json used to calculate the vulnerabilities
private String status;
/**
* Default constructor
*/
public AsyncCheckPolicyComplianceStatusResult() {
}
public AsyncCheckPolicyComplianceStatusResult(String status) {
this.status = status;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}