This is the fix for the JIRA issue CLOUDSTACK-8817. The return values for endpoint and startpoint are now Integer instead of String.

This commit is contained in:
Ashwin Swaroop 2015-09-11 18:27:31 -04:00
parent ff1ce07aef
commit 4d626c11bc
1 changed files with 2 additions and 2 deletions

View File

@ -37,11 +37,11 @@ public class FirewallResponse extends BaseResponse {
@SerializedName(ApiConstants.START_PORT)
@Param(description = "the starting port of firewall rule's port range")
private String startPort;
private Integer startPort;
@SerializedName(ApiConstants.END_PORT)
@Param(description = "the ending port of firewall rule's port range")
private String endPort;
private Integer endPort;
@SerializedName(ApiConstants.IP_ADDRESS_ID)
@Param(description = "the public ip address id for the firewall rule")