Skip to content

Commit 2836132

Browse files
committed
response object
1 parent 024b460 commit 2836132

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

plugins/hypervisors/vmware/src/main/java/org/apache/cloudstack/api/command/admin/zone/VmwareRequestReponse.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,16 @@
1717

1818
package org.apache.cloudstack.api.command.admin.zone;
1919

20+
import com.cloud.serializer.Param;
21+
import com.google.gson.annotations.SerializedName;
22+
import org.apache.cloudstack.api.ApiConstants;
2023
import org.apache.cloudstack.api.ResponseObject;
2124
import org.apache.cloudstack.api.response.ListResponse;
2225

2326
public class VmwareRequestReponse<T extends ResponseObject> extends ListResponse<T> {
24-
private transient String token;
27+
@SerializedName(ApiConstants.TOKEN)
28+
@Param(description = "The VMware API token to use for retrieving further responses with")
29+
private String token;
2530

2631
public String getToken() {
2732
return token;

0 commit comments

Comments
 (0)