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 3953118E74 for ; Sun, 13 Sep 2015 20:24:29 +0000 (UTC) Received: (qmail 30603 invoked by uid 500); 13 Sep 2015 20:24:29 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 30559 invoked by uid 500); 13 Sep 2015 20:24:28 -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 30545 invoked by uid 99); 13 Sep 2015 20:24:28 -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; Sun, 13 Sep 2015 20:24:28 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BE384E02DB; Sun, 13 Sep 2015 20:24:28 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: widodh@apache.org To: commits@cloudstack.apache.org Date: Sun, 13 Sep 2015 20:24:28 -0000 Message-Id: <8346987c353f49ba99ff74cbd32b3f0c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] git commit: updated refs/heads/master to 120e1cc Repository: cloudstack Updated Branches: refs/heads/master ff1ce07ae -> 120e1cc93 This is the fix for the JIRA issue CLOUDSTACK-8817. The return values for endpoint and startpoint are now Integer instead of String. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/4d626c11 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/4d626c11 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/4d626c11 Branch: refs/heads/master Commit: 4d626c11bc4f029788ddc0e12340d8e880521f8b Parents: ff1ce07 Author: Ashwin Swaroop Authored: Fri Sep 11 18:27:31 2015 -0400 Committer: Ashwin Swaroop Committed: Fri Sep 11 18:27:31 2015 -0400 ---------------------------------------------------------------------- api/src/org/apache/cloudstack/api/response/FirewallResponse.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/4d626c11/api/src/org/apache/cloudstack/api/response/FirewallResponse.java ---------------------------------------------------------------------- diff --git a/api/src/org/apache/cloudstack/api/response/FirewallResponse.java b/api/src/org/apache/cloudstack/api/response/FirewallResponse.java index 4c1342a..368f732 100644 --- a/api/src/org/apache/cloudstack/api/response/FirewallResponse.java +++ b/api/src/org/apache/cloudstack/api/response/FirewallResponse.java @@ -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")