KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > owxv3 > api > usermgr > UserMgrFactoryIF


1 /*
2  * SecurityMgrFactoryIF.java
3  *
4  * Created on May 12, 2003, 1:12 PM
5  */

6
7 package com.raptus.owxv3.api.usermgr;
8
9 /**
10  * Interface needed to be implemened by User Manager Factories
11  * @author jancsi
12  */

13 public interface UserMgrFactoryIF
14 {
15     /**
16      * Create a user manager, according to object param.
17      *
18      * All data related to security should be taken from param object
19      *
20      * @param param - the parameter containing all data related to security
21      * (like users, roles, etc)
22      */

23    UserMgr createUserManager(Object JavaDoc param);
24 }
25
Popular Tags