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

com.cx.restclient.dto.Status Maven / Gradle / Ivy

The newest version!
package com.cx.restclient.dto;

/**
 * Created by: Dorg.
 * Date: 06/10/2016.
 */
public enum Status {

    IN_PROGRESS("In progress"),
    SUCCEEDED("Succeeded"),
    FAILED("Failed"),
    SOURCE_PULLING_AND_DEPLOYMENT ("SourcePullingAndDeployment");

    private String value;

    public String value() {
        return value;
    }

    Status(String value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy