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 Admin {
14: String f1;
15: Collection roles;
16:
17: public Admin() {
18: roles = new ArrayList();
19: }
20:
21: /**
22: * @return Returns the f1.
23: */
24: public String getF1() {
25: return f1;
26: }
27:
28: /**
29: * @param f1 The f1 to set.
30: */
31: public void setF1(String f1) {
32: this .f1 = f1;
33: }
34:
35: /**
36: * @return Returns the roles.
37: */
38: public Collection getRoles() {
39: return roles;
40: }
41:
42: /**
43: * @param roles The roles to set.
44: */
45: public void setRoles(Collection roles) {
46: this.roles = roles;
47: }
48: }
|