All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.glookast.commons.capture.TransferJobStatus Maven / Gradle / Ivy

Go to download

Helper classes with Jackson annotations for easy interfacing with Glookast Products

There is a newer version: 3.1.6
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy