org.whitesource.agent.api.dispatch.AppFlags 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;
public enum AppFlags {
UPLOAD_SCA_LOGS("UPLOAD_SCA_LOGS"),
ASYNC_CHECK_POLICIES_ENABLED("ASYNC_CHECK_POLICIES_ENABLED");
private final String value;
AppFlags(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}