From 1e478b5c65975d33066c1fe61f704204f514478a Mon Sep 17 00:00:00 2001 From: Alena Prokharchyk Date: Mon, 25 Jun 2012 10:26:58 -0700 Subject: [PATCH] VPC: added missing @Implementation to listPrivateGateways --- api/src/com/cloud/api/commands/ListPrivateGatewaysCmd.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/src/com/cloud/api/commands/ListPrivateGatewaysCmd.java b/api/src/com/cloud/api/commands/ListPrivateGatewaysCmd.java index 5d9266e276a..9006547673a 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());