Class JBossMappingManager
- java.lang.Object
-
- org.jboss.security.plugins.mapping.JBossMappingManager
-
- All Implemented Interfaces:
BaseSecurityManager
,MappingManager
public class JBossMappingManager extends Object implements MappingManager
JBoss implementation of Mapping Manager- Since:
- Mar 9, 2007
- Version:
- $Revision$
- Author:
- Anil.Saldhana@redhat.com
-
-
Constructor Summary
Constructors Constructor Description JBossMappingManager(String domain)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> MappingContext<T>
getMappingContext(Class<T> mappingType)
<T> MappingContext<T>
getMappingContext(String mappingType)
Get the mapping context based on the typeString
getSecurityDomain()
Get the security domain from which the security manager is from.
-
-
-
Constructor Detail
-
JBossMappingManager
public JBossMappingManager(String domain)
-
-
Method Detail
-
getMappingContext
public <T> MappingContext<T> getMappingContext(String mappingType)
Description copied from interface:MappingManager
Get the mapping context based on the type- Specified by:
getMappingContext
in interfaceMappingManager
- Parameters:
mappingType
-MappingType
- Returns:
- See Also:
MappingType
-
getMappingContext
public <T> MappingContext<T> getMappingContext(Class<T> mappingType)
- Specified by:
getMappingContext
in interfaceMappingManager
-
getSecurityDomain
public String getSecurityDomain()
Description copied from interface:BaseSecurityManager
Get the security domain from which the security manager is from. Every security manager belongs to a named domain. The meaning of the security domain name depends on the implementation. Examples range from as fine grained as the name of EJBs to J2EE application names to DNS domain names.- Specified by:
getSecurityDomain
in interfaceBaseSecurityManager
- Returns:
- the security domain name. May be null in which case the security manager belongs to the logical default domain.
-
-