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

com.liveperson.ephemerals.deploy.DeploymentStatus Maven / Gradle / Ivy

There is a newer version: 1.0.0.7
Show newest version
package com.liveperson.ephemerals.deploy;

/**
 * Created by waseemh on 9/16/16.
 */
public enum DeploymentStatus {

        /**
         * Deployment unit is in progress
         */
         IN_PROGRESS,

         /**
         * Deployment unit has been deployed
         */
        FINISHED,

        /**
         * Deployment unit has not been deployed
         */
        PARTIALLY,

        /**
         * Deployment unit has failed
         */
        FAILED,

        /**
         * Deployment unit status is unknown
         */
        UNKNOWN;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy