All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.yourinspiration.jexpresso.baseauth.GrantedAuthority Maven / Gradle / Ivy

Go to download

A java web framework inspired by expressjs to build java web application with minimal effort

There is a newer version: 1.4.2
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy