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 2097011A65 for ; Wed, 14 May 2014 23:46:45 +0000 (UTC) Received: (qmail 35741 invoked by uid 500); 10 May 2014 22:00:36 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 96205 invoked by uid 500); 10 May 2014 21:58:01 -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 59836 invoked by uid 99); 10 May 2014 21:56:16 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 May 2014 21:56:16 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id B0E5B988B6C; Fri, 9 May 2014 15:16:14 +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: <27c9eb6aea03422d9b936357d85c1fc2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to ebc2b8b Date: Fri, 9 May 2014 15:16:14 +0000 (UTC) Repository: cloudstack Updated Branches: refs/heads/master 00fcd9fb2 -> ebc2b8b94 be able to remove vpc as owning entity of a network Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/ebc2b8b9 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/ebc2b8b9 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/ebc2b8b9 Branch: refs/heads/master Commit: ebc2b8b94d625bf6e9d0210140fc069d8c1e747d Parents: 00fcd9f Author: Daan Hoogland Authored: Fri May 9 16:51:34 2014 +0200 Committer: Daan Hoogland Committed: Fri May 9 17:16:02 2014 +0200 ---------------------------------------------------------------------- engine/schema/src/com/cloud/network/dao/NetworkVO.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/ebc2b8b9/engine/schema/src/com/cloud/network/dao/NetworkVO.java ---------------------------------------------------------------------- diff --git a/engine/schema/src/com/cloud/network/dao/NetworkVO.java b/engine/schema/src/com/cloud/network/dao/NetworkVO.java index 1b284de..6d4add7 100644 --- a/engine/schema/src/com/cloud/network/dao/NetworkVO.java +++ b/engine/schema/src/com/cloud/network/dao/NetworkVO.java @@ -605,4 +605,8 @@ public class NetworkVO implements Network { public void setStrechedL2Network(boolean strechedL2Network) { this.strechedL2Network = strechedL2Network; } + + public void setVpcId(long vpcId) { + this.vpcId = vpcId; + } }