01: package org.apache.turbine.om.security;
02:
03: /*
04: * Licensed to the Apache Software Foundation (ASF) under one
05: * or more contributor license agreements. See the NOTICE file
06: * distributed with this work for additional information
07: * regarding copyright ownership. The ASF licenses this file
08: * to you under the Apache License, Version 2.0 (the
09: * "License"); you may not use this file except in compliance
10: * with the License. You may obtain a copy of the License at
11: *
12: * http://www.apache.org/licenses/LICENSE-2.0
13: *
14: * Unless required by applicable law or agreed to in writing,
15: * software distributed under the License is distributed on an
16: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17: * KIND, either express or implied. See the License for the
18: * specific language governing permissions and limitations
19: * under the License.
20: */
21:
22: import org.apache.turbine.services.security.torque.TorqueGroup;
23:
24: /**
25: * This class represents a Group of Users in the system that are associated
26: * with specific entity or resource. The users belonging to the Group may have
27: * various Roles. The Permissions to perform actions upon the resource depend
28: * on the Roles in the Group that they are assigned.
29: *
30: * <a name="global">
31: * <p> Certain Roles that the Users may have in the system may are not related
32: * to any specific resource nor entity.
33: * They are assigned within a special group named 'global' that can be
34: * referenced in the code as {@link #GLOBAL_GROUP_NAME}.
35: * <br>
36: *
37: * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
38: *
39: * @deprecated Use {@link org.apache.turbine.services.security.torque.TorqueGroup}
40: * instead.
41: *
42: * @version $Id: TurbineGroup.java 571795 2007-09-01 13:09:35Z tv $
43: */
44: public class TurbineGroup extends TorqueGroup {
45: /** Serial Version UID */
46: private static final long serialVersionUID = -6034684697021752649L;
47: }
|