You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by sm...@apache.org on 2016/02/24 20:13:28 UTC

ambari git commit: AMBARI-15149: Remove Result.STATUS enum as it is not being used (Ajit Kumar via smnaha)

Repository: ambari
Updated Branches:
  refs/heads/trunk b81db70e5 -> c83bcbd9e


AMBARI-15149: Remove Result.STATUS enum as it is not being used (Ajit Kumar via smnaha)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/c83bcbd9
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/c83bcbd9
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/c83bcbd9

Branch: refs/heads/trunk
Commit: c83bcbd9ef776155eda3f8c1e933d6097cdb8e50
Parents: b81db70
Author: Nahappan Somasundaram <ns...@hortonworks.com>
Authored: Wed Feb 24 11:12:52 2016 -0800
Committer: Nahappan Somasundaram <ns...@hortonworks.com>
Committed: Wed Feb 24 11:12:52 2016 -0800

----------------------------------------------------------------------
 .../ambari/server/api/services/Result.java      | 41 ++------------------
 1 file changed, 4 insertions(+), 37 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/c83bcbd9/ambari-server/src/main/java/org/apache/ambari/server/api/services/Result.java
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/java/org/apache/ambari/server/api/services/Result.java b/ambari-server/src/main/java/org/apache/ambari/server/api/services/Result.java
index c827ac4..fabab62 100644
--- a/ambari-server/src/main/java/org/apache/ambari/server/api/services/Result.java
+++ b/ambari-server/src/main/java/org/apache/ambari/server/api/services/Result.java
@@ -27,45 +27,12 @@ import org.apache.ambari.server.api.util.TreeNode;
  */
 public interface Result {
 
-  public static enum STATUS { OK(200, "OK", false), CREATED(201, "Created", false), ACCEPTED(202, "Accepted", false),
-    CONFLICT(409, "Resource Conflict", true), NOT_FOUND(404, "Not Found", true), BAD_REQUEST(400, "Bad Request", true),
-    UNAUTHORIZED(401, "Unauthorized", true), FORBIDDEN(403, "Forbidden", true),
-    SERVER_ERROR(500, "Internal Server Error", true);
-
-    private int    m_code;
-    private String m_desc;
-    private boolean m_isErrorState;
-
-    private STATUS(int code, String description, boolean isErrorState) {
-      m_code = code;
-      m_desc = description;
-      m_isErrorState = isErrorState;
-    }
-
-    public int getStatus() {
-      return m_code;
-    }
-
-    public String getDescription() {
-      return m_desc;
-    }
-
-    public boolean isErrorState() {
-      return m_isErrorState;
-    }
-
-    @Override
-    public String toString() {
-      return getDescription();
-    }
-  };
-
   /**
    * Obtain the results of the request invocation as a Tree structure.
    *
    * @return the results of the request a a Tree structure
    */
-  public TreeNode<Resource> getResultTree();
+  TreeNode<Resource> getResultTree();
 
   /**
    * Determine whether the request was handled synchronously.
@@ -73,9 +40,9 @@ public interface Result {
    *
    * @return true if the request was synchronous, false if it was asynchronous
    */
-  public boolean isSynchronous();
+  boolean isSynchronous();
 
-  public ResultStatus getStatus();
+  ResultStatus getStatus();
 
-  public void setResultStatus(ResultStatus status);
+  void setResultStatus(ResultStatus status);
 }