api: Add UUID type to CommandType in BaseCmd Signed-off-by: Rohit Yadav <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/cc4030be Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/cc4030be Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/cc4030be Branch: refs/heads/api_refactoring Commit: cc4030be41da3a654e6a1437528bc59cb9e18486 Parents: efa034e Author: Rohit Yadav <[email protected]> Authored: Sun Dec 16 18:08:49 2012 -0800 Committer: Rohit Yadav <[email protected]> Committed: Sun Dec 16 18:08:49 2012 -0800 ---------------------------------------------------------------------- api/src/org/apache/cloudstack/api/BaseCmd.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/cc4030be/api/src/org/apache/cloudstack/api/BaseCmd.java ---------------------------------------------------------------------- diff --git a/api/src/org/apache/cloudstack/api/BaseCmd.java b/api/src/org/apache/cloudstack/api/BaseCmd.java index 21e5a33..ac87785 100644 --- a/api/src/org/apache/cloudstack/api/BaseCmd.java +++ b/api/src/org/apache/cloudstack/api/BaseCmd.java @@ -80,7 +80,7 @@ public abstract class BaseCmd { public static final String RESPONSE_TYPE_JSON = "json"; public enum CommandType { - BOOLEAN, DATE, FLOAT, INTEGER, SHORT, LIST, LONG, OBJECT, MAP, STRING, TZDATE + BOOLEAN, DATE, FLOAT, INTEGER, SHORT, LIST, LONG, OBJECT, MAP, STRING, TZDATE, UUID } // FIXME: Extract these out into a separate file
