com.glookast.commons.capture.TransferJobStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-capture Show documentation
Show all versions of commons-capture Show documentation
Helper classes with Jackson annotations for easy interfacing with Glookast Products
package com.glookast.commons.capture;
import com.fasterxml.jackson.annotation.JsonProperty;
public enum TransferJobStatus
{
@JsonProperty ("STARTING")
STARTING,
@JsonProperty ("RUNNING")
RUNNING,
@JsonProperty ("PAUSED")
PAUSED,
@JsonProperty ("FAILED")
FAILED,
@JsonProperty ("ABORTED")
ABORTED,
@JsonProperty ("FINISHED")
FINISHED,
@JsonProperty ("IDLE")
IDLE
}