KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > core > modules > SecurityModule


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.core.modules;
10
11 import org.jboss.portal.core.security.SchemeStore;
12 import org.jboss.portal.common.FQN;
13
14 /**
15  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
16  * @version $Revision: 1.1 $
17  */

18 public interface SecurityModule
19 {
20
21
22    /**
23     * Return the scheme store for the given fqn.
24     *
25     * @param fqn the target fqn
26     * @return the store
27     */

28    SchemeStore getStore(FQN fqn);
29    
30
31
32
33
34
35
36 }
37
Popular Tags