From 614400f1e34b1f36927ee6816091b370d3fc70c9 Mon Sep 17 00:00:00 2001 From: alena Date: Fri, 17 Jun 2011 15:35:08 -0700 Subject: [PATCH] Fixed userResponse to return api/secretKeys --- api/src/com/cloud/api/response/UserResponse.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/com/cloud/api/response/UserResponse.java b/api/src/com/cloud/api/response/UserResponse.java index d4d44d2b5c6..b8fecc09b09 100644 --- a/api/src/com/cloud/api/response/UserResponse.java +++ b/api/src/com/cloud/api/response/UserResponse.java @@ -60,10 +60,10 @@ public class UserResponse extends BaseResponse { @SerializedName("timezone") @Param(description="the timezone user was created in") private String timezone; - @SerializedName(ApiConstants.API_KEY) @Param(description="the api key of the user") + @SerializedName("apikey") @Param(description="the api key of the user") private String apiKey; - @SerializedName(ApiConstants.SECRET_KEY) @Param(description="the secret key of the user") + @SerializedName("secretkey") @Param(description="the secret key of the user") private String secretKey; public Long getId() {