Interface Attributes2GrantedAuthoritiesMapper

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Collection<? extends GrantedAuthority> getGrantedAuthorities​(java.util.Collection<java.lang.String> attributes)
      Implementations of this method should map the given collection of attributes to a collection of Spring Security GrantedAuthorities.
    • Method Detail

      • getGrantedAuthorities

        java.util.Collection<? extends GrantedAuthority> getGrantedAuthorities​(java.util.Collection<java.lang.String> attributes)
        Implementations of this method should map the given collection of attributes to a collection of Spring Security GrantedAuthorities. There are no restrictions for the mapping process; a single attribute can be mapped to multiple Spring Security GrantedAuthorities, all attributes can be mapped to a single Spring Security GrantedAuthority, some attributes may not be mapped, etc.
        Parameters:
        attributes - the attributes to be mapped
        Returns:
        the collection of authorities created from the attributes