Return-Path: X-Original-To: apmail-incubator-cloudstack-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-cloudstack-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 82A6ADFE8 for ; Sun, 6 Jan 2013 23:33:32 +0000 (UTC) Received: (qmail 62953 invoked by uid 500); 6 Jan 2013 23:33:32 -0000 Delivered-To: apmail-incubator-cloudstack-commits-archive@incubator.apache.org Received: (qmail 62895 invoked by uid 500); 6 Jan 2013 23:33:32 -0000 Mailing-List: contact cloudstack-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cloudstack-dev@incubator.apache.org Delivered-To: mailing list cloudstack-commits@incubator.apache.org Received: (qmail 62881 invoked by uid 99); 6 Jan 2013 23:33:32 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 06 Jan 2013 23:33:32 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id F3C5D8239D4; Sun, 6 Jan 2013 23:33:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bhaisaab@apache.org To: cloudstack-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [3/3] git commit: InfrastructureEntity: New interface contract for classes not associated with any account Message-Id: <20130106233331.F3C5D8239D4@tyr.zones.apache.org> Date: Sun, 6 Jan 2013 23:33:31 +0000 (UTC) Updated Branches: refs/heads/api_refactoring 6f6ed8583 -> e51bc8b16 InfrastructureEntity: New interface contract for classes not associated with any account Signed-off-by: Rohit Yadav Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/e51bc8b1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/e51bc8b1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/e51bc8b1 Branch: refs/heads/api_refactoring Commit: e51bc8b161bfd95aeaf06e1c86a82da6a3b29b91 Parents: ed0637b Author: Rohit Yadav Authored: Sun Jan 6 15:32:40 2013 -0800 Committer: Rohit Yadav Committed: Sun Jan 6 15:32:40 2013 -0800 ---------------------------------------------------------------------- .../cloudstack/acl/InfrastructureEntity.java | 20 +++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/e51bc8b1/api/src/org/apache/cloudstack/acl/InfrastructureEntity.java ---------------------------------------------------------------------- diff --git a/api/src/org/apache/cloudstack/acl/InfrastructureEntity.java b/api/src/org/apache/cloudstack/acl/InfrastructureEntity.java new file mode 100644 index 0000000..451c0c8 --- /dev/null +++ b/api/src/org/apache/cloudstack/acl/InfrastructureEntity.java @@ -0,0 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +package org.apache.cloudstack.acl; + +public interface InfrastructureEntity { +}