dev.fitko.fitconnect.api.domain.zbp.state.State Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Library that provides client access to the FIT-Connect api-endpoints for sending, subscribing and
routing
package dev.fitko.fitconnect.api.domain.zbp.state;
import lombok.Getter;
@Getter
public enum State {
INITIATED("INITIATED"),
SUBMITTED("SUBMITTED"),
RECEIVED("RECEIVED"),
PROCESSING("PROCESSING"),
ACTION_REQUIRED("ACTION_REQUIRED"),
COMPLETED("COMPLETED");
private final String value;
State(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}