api: Fix license header for acl/Role.java Signed-off-by: Rohit Yadav <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/c8923c96 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/c8923c96 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/c8923c96 Branch: refs/heads/api_refactoring Commit: c8923c9625619f379b42d9888d7b7d6dfe56c760 Parents: 293665f Author: Rohit Yadav <[email protected]> Authored: Mon Dec 10 16:18:35 2012 -0800 Committer: Rohit Yadav <[email protected]> Committed: Mon Dec 10 16:18:35 2012 -0800 ---------------------------------------------------------------------- api/src/com/cloud/acl/Role.java | 19 ++++++++++++++++--- 1 files changed, 16 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/c8923c96/api/src/com/cloud/acl/Role.java ---------------------------------------------------------------------- diff --git a/api/src/com/cloud/acl/Role.java b/api/src/com/cloud/acl/Role.java index 0ab69e9..8016060 100644 --- a/api/src/com/cloud/acl/Role.java +++ b/api/src/com/cloud/acl/Role.java @@ -1,3 +1,19 @@ +// 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 com.cloud.acl; //metadata - consists of default dynamic roles in CS + any custom roles added by user @@ -13,8 +29,5 @@ public interface Role { public static final short CHILD_DOMAIN_USER = 7; public long getId(); - public short getRoleType(); - - }
