Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A73F417DC5 for ; Sat, 31 Jan 2015 12:08:12 +0000 (UTC) Received: (qmail 87088 invoked by uid 500); 31 Jan 2015 12:08:13 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 86970 invoked by uid 500); 31 Jan 2015 12:08:13 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 86606 invoked by uid 99); 31 Jan 2015 12:08:12 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Jan 2015 12:08:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A3D6EE04B6; Sat, 31 Jan 2015 12:08:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: koushik@apache.org To: commits@cloudstack.apache.org Date: Sat, 31 Jan 2015 12:08:15 -0000 Message-Id: In-Reply-To: <1eb3db37f95e48fab7b5299f9f2d6b92@git.apache.org> References: <1eb3db37f95e48fab7b5299f9f2d6b92@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [4/8] git commit: updated refs/heads/volume-upload to 121ff19 volume-upload: GetUploadParamsForVolume/Template API response in XML format doesn't have POST URL The URL response parameter didn't have the right name attribute set on it. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/71873c8d Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/71873c8d Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/71873c8d Branch: refs/heads/volume-upload Commit: 71873c8d417dadce3769298331d5707441fcf3ba Parents: 6598a65 Author: Koushik Das Authored: Tue Jan 27 11:23:24 2015 +0530 Committer: Koushik Das Committed: Sat Jan 31 17:16:58 2015 +0530 ---------------------------------------------------------------------- .../apache/cloudstack/api/response/GetUploadParamsResponse.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/71873c8d/api/src/org/apache/cloudstack/api/response/GetUploadParamsResponse.java ---------------------------------------------------------------------- diff --git a/api/src/org/apache/cloudstack/api/response/GetUploadParamsResponse.java b/api/src/org/apache/cloudstack/api/response/GetUploadParamsResponse.java index 4d4a838..7426d9f7 100644 --- a/api/src/org/apache/cloudstack/api/response/GetUploadParamsResponse.java +++ b/api/src/org/apache/cloudstack/api/response/GetUploadParamsResponse.java @@ -33,7 +33,8 @@ public class GetUploadParamsResponse extends BaseResponse { @Param(description = "the template/volume ID") private UUID id; - @Param(name = ApiConstants.URL, description = "POST url to upload the file to") + @SerializedName(ApiConstants.URL) + @Param(description = "POST url to upload the file to") private URL postURL; @SerializedName(ApiConstants.METADATA)