VPC: added missing @Implementation to listPrivateGateways
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/4eee9246 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/4eee9246 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/4eee9246 Branch: refs/heads/vpc Commit: 4eee9246d87d9bf2af53270f46b984b0d986ee79 Parents: dc04e0b Author: Alena Prokharchyk <[email protected]> Authored: Mon Jun 25 10:26:58 2012 -0700 Committer: Alena Prokharchyk <[email protected]> Committed: Mon Jun 25 20:57:23 2012 -0700 ---------------------------------------------------------------------- .../cloud/api/commands/ListPrivateGatewaysCmd.java | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/4eee9246/api/src/com/cloud/api/commands/ListPrivateGatewaysCmd.java ---------------------------------------------------------------------- diff --git a/api/src/com/cloud/api/commands/ListPrivateGatewaysCmd.java b/api/src/com/cloud/api/commands/ListPrivateGatewaysCmd.java index 5d9266e..9006547 100644 --- a/api/src/com/cloud/api/commands/ListPrivateGatewaysCmd.java +++ b/api/src/com/cloud/api/commands/ListPrivateGatewaysCmd.java @@ -20,6 +20,7 @@ import org.apache.log4j.Logger; import com.cloud.api.ApiConstants; import com.cloud.api.BaseListCmd; import com.cloud.api.IdentityMapper; +import com.cloud.api.Implementation; import com.cloud.api.Parameter; import com.cloud.api.response.ListResponse; import com.cloud.api.response.PrivateGatewayResponse; @@ -28,6 +29,7 @@ import com.cloud.network.vpc.PrivateGateway; /** * @author Alena Prokharchyk */ +@Implementation(description="List private gateways", responseObject=PrivateGatewayResponse.class) public class ListPrivateGatewaysCmd extends BaseListCmd{ public static final Logger s_logger = Logger.getLogger(ListPrivateGatewaysCmd.class.getName());
