1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.om.security;
18
19 /***
20 * Basic Group Role implementation.
21 *
22 * @author <a href="mailto:mark_orciuch@ngsltd.com">Mark Orciuch</a>
23 * @version $Id: BaseJetspeedGroupRole.java,v 1.2 2004/02/23 03:14:12 jford Exp $
24 */
25 public class BaseJetspeedGroupRole implements GroupRole
26 {
27 protected Group group = null;
28 protected Role role = null;
29
30 /***
31 * Get the Group
32 *
33 * @return the group.
34 */
35 public Group getGroup()
36 {
37 return group;
38 }
39
40 /***
41 * Set the Group
42 *
43 * @param group the Group.
44 */
45 public void setGroup(Group group)
46 {
47 this.group = group;
48 }
49
50 /***
51 * Get the Role
52 *
53 * @return the role.
54 */
55 public Role getRole()
56 {
57 return role;
58 }
59
60 /***
61 * Set the Role
62 *
63 * @param group the Role.
64 */
65 public void setRole(Role role)
66 {
67 this.role = role;
68 }
69 }