KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jfox > test > IUserManager


1 /*
2  * JFox - The most lightweight Java EE Application Server!
3  * more details please visit http://www.huihoo.org/jfox or http://www.jfox.org.cn.
4  *
5  * JFox is licenced and re-distributable under GNU LGPL.
6  */

7 package jfox.test;
8
9 import org.jfox.framework.component.Component;
10 import org.jfox.framework.annotation.Exported;
11
12 /**
13  * @author <a HREF="mailto:jfox.young@gmail.com">Young Yang</a>
14  */

15 @Exported
16 public interface IUserManager extends Component {
17
18     public void addUser(IUser user);
19
20     public void removeUser(IUser user);
21
22     public String JavaDoc listUsers();
23
24 }
25
Popular Tags