01: /**
02: * Copyright (C) 2001-2004 France Telecom R&D
03: */package org.objectweb.speedo.pobjects.intelli;
04:
05: import java.util.ArrayList;
06: import java.util.Collection;
07:
08: /**
09: *
10: *
11: * @author chassase
12: */
13: public class Role {
14: String f1;
15: Collection scopes;
16: Admin admin;
17:
18: public Role() {
19: scopes = new ArrayList();
20: }
21:
22: /**
23: * @return Returns the f1.
24: */
25: public String getF1() {
26: return f1;
27: }
28:
29: /**
30: * @param f1 The f1 to set.
31: */
32: public void setF1(String f1) {
33: this .f1 = f1;
34: }
35:
36: /**
37: * @return Returns the scopes.
38: */
39: public Collection getScopes() {
40: return scopes;
41: }
42:
43: /**
44: * @param scopes The scopes to set.
45: */
46: public void setScopes(Collection scopes) {
47: this .scopes = scopes;
48: }
49:
50: /**
51: * @return Returns the admin.
52: */
53: public Admin getAdmin() {
54: return admin;
55: }
56:
57: /**
58: * @param admin The admin to set.
59: */
60: public void setAdmin(Admin admin) {
61: this.admin = admin;
62: }
63: }
|