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 360A81872A for ; Wed, 24 Jun 2015 18:20:20 +0000 (UTC) Received: (qmail 79738 invoked by uid 500); 24 Jun 2015 18:20:20 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 79706 invoked by uid 500); 24 Jun 2015 18:20:20 -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 79697 invoked by uid 99); 24 Jun 2015 18:20:20 -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; Wed, 24 Jun 2015 18:20:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E9DDDE05D1; Wed, 24 Jun 2015 18:20:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dahn@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to 55c1d9f Date: Wed, 24 Jun 2015 18:20:19 +0000 (UTC) Repository: cloudstack Updated Branches: refs/heads/master f18c8f8d9 -> 55c1d9f3f findbugs: fields of serializable made serializable Signed-off-by: Daan Hoogland This closes #522 Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/55c1d9f3 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/55c1d9f3 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/55c1d9f3 Branch: refs/heads/master Commit: 55c1d9f3fa90a745ff73dc641516c231563b91e5 Parents: f18c8f8 Author: Daan Hoogland Authored: Wed Jun 24 14:29:04 2015 +0200 Committer: Daan Hoogland Committed: Wed Jun 24 20:20:12 2015 +0200 ---------------------------------------------------------------------- api/src/com/cloud/agent/api/to/LoadBalancerTO.java | 1 + server/src/com/cloud/api/doc/Argument.java | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/55c1d9f3/api/src/com/cloud/agent/api/to/LoadBalancerTO.java ---------------------------------------------------------------------- diff --git a/api/src/com/cloud/agent/api/to/LoadBalancerTO.java b/api/src/com/cloud/agent/api/to/LoadBalancerTO.java index baa83df..2bb1537 100644 --- a/api/src/com/cloud/agent/api/to/LoadBalancerTO.java +++ b/api/src/com/cloud/agent/api/to/LoadBalancerTO.java @@ -481,6 +481,7 @@ public class LoadBalancerTO { } public static class AutoScaleVmGroupTO implements Serializable { + private static final long serialVersionUID = 2L; private final String uuid; private final int minMembers; private final int maxMembers; http://git-wip-us.apache.org/repos/asf/cloudstack/blob/55c1d9f3/server/src/com/cloud/api/doc/Argument.java ---------------------------------------------------------------------- diff --git a/server/src/com/cloud/api/doc/Argument.java b/server/src/com/cloud/api/doc/Argument.java index 6889be7..141f7e6 100644 --- a/server/src/com/cloud/api/doc/Argument.java +++ b/server/src/com/cloud/api/doc/Argument.java @@ -16,9 +16,11 @@ // under the License. package com.cloud.api.doc; +import java.io.Serializable; import java.util.List; -public class Argument implements Comparable { +public class Argument implements Comparable, Serializable { + private static final long serialVersionUID = 2L; private String name; private String description; private Boolean required;