org.gs4tr.gcc.restclient.model.SubmissionStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
package org.gs4tr.gcc.restclient.model;
public enum SubmissionStatus {
PreProcess("Pre-process"), Started("Started"), Analyzed("Analyzed"), AwaitingApproval(
"Awaiting Approval"), AwaitingQuoteApproval("Awaiting Quote Approval"), Review("Review"),
Approval("Approval"), Cancelled("Cancelled"), Translate("Translate"), Completed("Completed"), Delivered("Delivered");
private String value;
SubmissionStatus(String value) {
this.value = value;
}
public String getValue() {
return value;
}
public String text() {
return value;
}
}