public interface AuthorityGranter
If a Windows NT login module were to be used from JAAS, an AuthrityGranter implementation could be created to map a NT Group Principal to a ROLE_USER role for instance.
Set<String> grant(Principal principal)
The set may contain any object as all objects in the returned set will be passed to the JaasGrantedAuthority constructor using toString().
principal
- One of the principals from the LoginContext.getSubect().getPrincipals() method.