KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > speedo > pobjects > intelli > Admin


1 /**
2  * Copyright (C) 2001-2004 France Telecom R&D
3  */

4 package org.objectweb.speedo.pobjects.intelli;
5
6 import java.util.ArrayList JavaDoc;
7 import java.util.Collection JavaDoc;
8
9 /**
10  *
11  *
12  * @author chassase
13  */

14 public class Admin {
15     String JavaDoc f1;
16     Collection JavaDoc roles;
17     public Admin() {
18         roles = new ArrayList JavaDoc();
19     }
20     
21     /**
22      * @return Returns the f1.
23      */

24     public String JavaDoc getF1() {
25         return f1;
26     }
27     /**
28      * @param f1 The f1 to set.
29      */

30     public void setF1(String JavaDoc f1) {
31         this.f1 = f1;
32     }
33     /**
34      * @return Returns the roles.
35      */

36     public Collection JavaDoc getRoles() {
37         return roles;
38     }
39     /**
40      * @param roles The roles to set.
41      */

42     public void setRoles(Collection JavaDoc roles) {
43         this.roles = roles;
44     }
45 }
46
Popular Tags