From 4902673fce92f4fba4cb7b9c13c3eb7141c75985 Mon Sep 17 00:00:00 2001 From: prachi Date: Mon, 30 Apr 2012 11:25:34 -0700 Subject: [PATCH] Added the missing @Implementation annotation for the new API command MarkDefaultZoneForAccountCmd --- .../com/cloud/api/commands/MarkDefaultZoneForAccountCmd.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/src/com/cloud/api/commands/MarkDefaultZoneForAccountCmd.java b/api/src/com/cloud/api/commands/MarkDefaultZoneForAccountCmd.java index 5f16851b648..aa37b22dd7f 100644 --- a/api/src/com/cloud/api/commands/MarkDefaultZoneForAccountCmd.java +++ b/api/src/com/cloud/api/commands/MarkDefaultZoneForAccountCmd.java @@ -16,6 +16,7 @@ package com.cloud.api.commands; import org.apache.log4j.Logger; import com.cloud.api.BaseAsyncCmd; +import com.cloud.api.Implementation; import com.cloud.api.Parameter; import com.cloud.api.ApiConstants; import com.cloud.api.IdentityMapper; @@ -26,6 +27,7 @@ import com.cloud.api.response.AccountResponse; import com.cloud.api.ServerApiException; import com.cloud.api.BaseCmd; +@Implementation(description="Marks a default zone for this account", responseObject=AccountResponse.class, since="3.0.3") public class MarkDefaultZoneForAccountCmd extends BaseAsyncCmd { public static final Logger s_logger = Logger.getLogger(MarkDefaultZoneForAccountCmd.class.getName());