de.yourinspiration.jexpresso.baseauth.GrantedAuthority Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jexpresso Show documentation
Show all versions of jexpresso Show documentation
A java web framework inspired by expressjs to build java web application with minimal effort
package de.yourinspiration.jexpresso.baseauth;
import java.io.Serializable;
/**
* A granted authority represents a certain role that the user has been granted
* for the application.
*
* @author Marcel Härle
*/
public interface GrantedAuthority extends Serializable {
/**
* The string representation of the granted authority.
*
* @return the string representation of the granted authority
*/
String getAuthority();
}