Package org.jboss.modules.security
Class ModularPermissionFactory
- java.lang.Object
-
- org.jboss.modules.security.ModularPermissionFactory
-
- All Implemented Interfaces:
PermissionFactory
public final class ModularPermissionFactory extends Object implements PermissionFactory
A permission factory which instantiates a permission from a module.- Author:
- David M. Lloyd
-
-
Constructor Summary
Constructors Constructor Description ModularPermissionFactory(ModuleLoader moduleLoader, ModuleIdentifier moduleIdentifier, String className, String targetName, String permissionActions)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Permission
construct()
Construct a new instance of the permission.
-
-
-
Constructor Detail
-
ModularPermissionFactory
public ModularPermissionFactory(ModuleLoader moduleLoader, ModuleIdentifier moduleIdentifier, String className, String targetName, String permissionActions)
Construct a new instance.- Parameters:
moduleLoader
- the module loader from which the module is to be loadedmoduleIdentifier
- the module identifier from which the permission is to be loadedclassName
- the name of the permission classtargetName
- the name to pass to the permission class constructor ornull
for nonepermissionActions
- the action list to pass to the permission class constructor ornull
for none
-
-
Method Detail
-
construct
public Permission construct()
Description copied from interface:PermissionFactory
Construct a new instance of the permission. The instance may be cached.- Specified by:
construct
in interfacePermissionFactory
- Returns:
- the permission
-
-