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.
This commit is contained in:
Koushik Das 2015-01-27 11:23:24 +05:30
parent 6598a65dfb
commit 71873c8d41
1 changed files with 2 additions and 1 deletions

View File

@ -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)