You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@eagle.apache.org by "Hao Chen (JIRA)" <ji...@apache.org> on 2016/07/22 16:42:20 UTC

[jira] [Created] (EAGLE-387) Implement Application Lifecycle Status Conversion

Hao Chen created EAGLE-387:
------------------------------

             Summary: Implement Application Lifecycle Status Conversion
                 Key: EAGLE-387
                 URL: https://issues.apache.org/jira/browse/EAGLE-387
             Project: Eagle
          Issue Type: Sub-task
    Affects Versions: v0.4.0
            Reporter: Hao Chen
            Assignee: Hao Chen
             Fix For: v0.5.0


{code}
public static enum Status{
        INITIAILIZED("INITIAILIZED"),
        STARTING("STARTING"),
        RUNNING("RUNNING"),
        STOPPPING("STOPPPING"),
        STOPPED("STOPPED");

        private final String status;
        Status(String status){
            this.status = status;
        }

        @Override
        public String toString() {
            return status;
        }
    }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)