Repository: stratos Updated Branches: refs/heads/4.0.0-grouping d59ddee7a -> e81038cb5
updating cluster status Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/bd9825b6 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/bd9825b6 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/bd9825b6 Branch: refs/heads/4.0.0-grouping Commit: bd9825b68ec12f4d33999b2f5cf1c0f4c6b986c4 Parents: 1422611 Author: Reka <[email protected]> Authored: Tue Sep 16 17:02:17 2014 +0530 Committer: Reka <[email protected]> Committed: Tue Sep 16 17:02:17 2014 +0530 ---------------------------------------------------------------------- .../apache/stratos/messaging/domain/topology/ClusterStatus.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/bd9825b6/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/domain/topology/ClusterStatus.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/domain/topology/ClusterStatus.java b/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/domain/topology/ClusterStatus.java index b3301c8..9556c4d 100644 --- a/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/domain/topology/ClusterStatus.java +++ b/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/domain/topology/ClusterStatus.java @@ -21,7 +21,10 @@ package org.apache.stratos.messaging.domain.topology; public enum ClusterStatus { Created(1), In_Maintenance(2), - Removed(3); + terminating(3), + Removed(4), + Running(5), + Active(6); private int code;
