Class SimpleMappableAttributesRetriever
- java.lang.Object
-
- org.springframework.security.core.authority.mapping.SimpleMappableAttributesRetriever
-
- All Implemented Interfaces:
MappableAttributesRetriever
public class SimpleMappableAttributesRetriever extends java.lang.Object implements MappableAttributesRetriever
This class implements the MappableAttributesRetriever interface by just returning a list of mappable attributes as previously set using the corresponding setter method.- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description SimpleMappableAttributesRetriever()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<java.lang.String>
getMappableAttributes()
Implementations of this method should return a set of all string attributes which can be mapped to GrantedAuthoritys.void
setMappableAttributes(java.util.Set<java.lang.String> aMappableRoles)
-
-
-
Method Detail
-
getMappableAttributes
public java.util.Set<java.lang.String> getMappableAttributes()
Description copied from interface:MappableAttributesRetriever
Implementations of this method should return a set of all string attributes which can be mapped to GrantedAuthoritys.- Specified by:
getMappableAttributes
in interfaceMappableAttributesRetriever
- Returns:
- set of all mappable roles
-
setMappableAttributes
public void setMappableAttributes(java.util.Set<java.lang.String> aMappableRoles)
-
-