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/11/11 06:12:58 UTC

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

     [ https://issues.apache.org/jira/browse/EAGLE-387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hao Chen resolved EAGLE-387.
----------------------------
    Resolution: Fixed

> 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)