CLOUDSTACK-6299: Fixed apidoc info with base64 encoded

Conflicts:
	api/src/org/apache/cloudstack/api/response/GetVMPasswordResponse.java
This commit is contained in:
Sebastien Goasguen 2014-03-28 09:51:45 -04:00
parent 0810029f27
commit 7830a0f0f4
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ import com.google.gson.annotations.SerializedName;
public class GetVMPasswordResponse extends BaseResponse {
@SerializedName("encryptedpassword") @Param(description="The encrypted password of the VM")
@SerializedName("encryptedpassword")
@Param(description = "The base64 encoded encrypted password of the VM")
private String encryptedPassword;
public GetVMPasswordResponse() {}