Example usage for org.springframework.security.core GrantedAuthority interface-usage

List of usage examples for org.springframework.security.core GrantedAuthority interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.core GrantedAuthority interface-usage.

Usage

From source file com.sasav.blackjack.model.security.LoginAuthority.java

/**
 *
 * @author Vadim
 */
@Entity
@Table(name = "login_authorities")

From source file com.jaspersoft.jasperserver.ps.OAuth.OAuthAuthorityImpl.java

public class OAuthAuthorityImpl implements GrantedAuthority {
    private final String authority;

    public OAuthAuthorityImpl(String authority) {
        this.authority = authority;
    }

From source file br.com.valecard.model.Role.java

@Entity
@Table(name = "ROLES")
public class Role implements GrantedAuthority {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)

From source file hr.foi.rsc.model.Role.java

/**
 *
 * @author tomo
 */
@Entity(name = "role")
public class Role implements GrantedAuthority {

From source file security.Authority.java

@Embeddable
@Access(AccessType.PROPERTY)
public class Authority implements GrantedAuthority {

    // Constructors -----------------------------------------------------------

From source file com.mycompany.apps.domain.dto.Roles.java

/**
 *
 * @author stnetadmin
 */
public class Roles implements GrantedAuthority {

From source file cz.muni.fi.editor.api.support.EditorAuthority.java

/**
 * Created by Dominik Szalai - emptulik at gmail.com on 13.10.2016.
 */
@EqualsAndHashCode(of = "role")
public class EditorAuthority implements GrantedAuthority {
    private final String role;

From source file org.openeos.services.security.internal.ObjectGrantedAuthority.java

public class ObjectGrantedAuthority implements GrantedAuthority {

    private static final long serialVersionUID = -346472526823039866L;

    public static final String PREFIX = "OBJECT_GRANTED_AUTHORITY_";

From source file mx.edu.um.dii.general.model.Rol.java

/**
 *
 * @author edermtz
 */
@Entity
@Table(name = "ROLES")

From source file net.kamhon.ieagle.security.ExtGrantedAuthority.java

public class ExtGrantedAuthority implements GrantedAuthority {
    private static final long serialVersionUID = -8189988051328703049L;

    String authority;

    public ExtGrantedAuthority(String authority) {