01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.cocoon.components.source.helpers;
18:
19: /**
20: * This class represents a source permission for users
21: *
22: * @author <a href="mailto:stephan@apache.org">Stephan Michels</a>
23: * @version CVS $Id: PrincipalSourcePermission.java 433543 2006-08-22 06:22:54Z crossley $
24: */
25: public class PrincipalSourcePermission extends AbstractSourcePermission {
26:
27: public final static String PRINCIPAL_SELF = "SELF";
28: public final static String PRINCIPAL_ALL = "ALL";
29: public final static String PRINCIPAL_GUEST = "GUEST";
30:
31: private String principal;
32:
33: /**
34: * Creates a new permission
35: *
36: * @param principal Principal of the permission
37: * @param privilege Privilege of the permission
38: * @param inheritable If the permission is inheritable
39: * @param negative If the permission is negative
40: */
41: public PrincipalSourcePermission(String principal,
42: String privilege, boolean inheritable, boolean negative) {
43:
44: this .principal = principal;
45: setPrivilege(privilege);
46: setInheritable(inheritable);
47: setNegative(negative);
48: }
49:
50: /**
51: * Sets the principal of the permission
52: *
53: * @param principal Principal of the permission
54: */
55: public void setPrincipal(String principal) {
56: this .principal = principal;
57: }
58:
59: /**
60: * Returns the principal of the permission
61: *
62: * @return Principal of the permission
63: */
64: public String getPrincipal() {
65: return this.principal;
66: }
67: }
|