com.lionbridge.content.sdk.definitions.RejectQuoteStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liox-content-sdk-java Show documentation
Show all versions of liox-content-sdk-java Show documentation
Client for Lionbridge Ondemand API
package com.lionbridge.content.sdk.definitions;
public enum RejectQuoteStatus {
Success(200), BadRequest(400), Unauthorized(401), Conflict(409), CommunicationError(0), Unknown(-1);
private int value;
RejectQuoteStatus(int value) {
this.setValue(value);
}
public int getValue() {
return value;
}
public void setValue(final int value) {
this.value = value;
}
}