edu.asu.diging.gilesecosystem.util.users.IGrantedAuthorityFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of giles-eco-util Show documentation
Show all versions of giles-eco-util Show documentation
Utility plugin for the Giles Ecoystem that for example provides utility classes
for properties or file management.
The newest version!
package edu.asu.diging.gilesecosystem.util.users;
import org.springframework.security.core.GrantedAuthority;
public interface IGrantedAuthorityFactory {
GrantedAuthority createGrantedAuthority(String role);
}