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 de.blizzy.documentr.access.PermissionGrantedAuthority.java

/** An authority that grants a permission on a target object. */
class PermissionGrantedAuthority implements GrantedAuthority {
    private static final long serialVersionUID = 4837778771482591248L;

    @Getter
    private GrantedAuthorityTarget target;

From source file hello.data.Role.java

@Entity
public class Role implements GrantedAuthority {

    private static final long serialVersionUID = 1L;

    @Id

From source file org.openwms.core.uaa.SecurityObjectAuthority.java

/**
 * A SecurityObjectAuthority.
 * 
 * @author <a href="mailto:scherrer@openwms.org">Heiko Scherrer</a>
 * @version 0.2
 * @since 0.2

From source file py.una.pol.karaku.security.KarakuPermission.java

/**
 * Esta clase implementa GrantedAuthority, el cual representa una autoridad
 * otorgada a un objecto de autenticacin.
 * 
 * @author Uriel Gonzlez
 * @version 1.0, 10/10/12

From source file com.gtp.tradeapp.entity.Role.java

@Entity
public class Role implements GrantedAuthority {

    private static final long serialVersionUID = 1L;

    @Id

From source file cn.net.withub.demo.bootsec.hello.entity.Roleinfo.java

/**
 *
 * @author Diluka
 */
@Entity
@Table(name = "roleinfo")

From source file com.sinespera.model.Role.java

@Entity
public class Role implements GrantedAuthority {

    private static final long serialVersionUID = 1L;

    @Id

From source file sy.rest.data.Role.java

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

    private static final long serialVersionUID = 1L;

From source file org.createnet.raptor.models.auth.Role.java

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

    public static enum Roles {
        super_admin, admin, user, guest

From source file de.hska.ld.core.persistence.domain.Role.java

@Entity
@Table(name = "ld_role", indexes = @Index(name = "ld_role_name_idx", columnList = "name"))
public class Role implements GrantedAuthority {

    public Role() {
    }