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 net.seedboxer.web.security.SeedBoxerGrantedAuthority.java

/**
 * @author Jorge Davison (jdavisonc)
 *
 */
public class SeedBoxerGrantedAuthority implements GrantedAuthority {

From source file com.jgermaine.fyp.rest.model.Role.java

@Entity
public class Role implements GrantedAuthority {

    private static final long serialVersionUID = 1L;

    @Id

From source file de.blizzy.documentr.access.RoleGrantedAuthority.java

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

    @Getter
    private GrantedAuthorityTarget target;

From source file com.swordcode.webcore.security.server.model.SecurityPermission.java

/**
 *
 * @author euclidesflores
 */
@Entity
@Table(name = "sec_permission")

From source file org.openvpms.component.business.domain.im.security.ArchetypeAwareGrantedAuthority.java

/**
 * Represents permission for a service, method and associated archetype short
 * name.
 * <p/>
 * The precise format of an authority is
 * <p/>

From source file no.dusken.aranea.model.Role.java

@Entity
@Table(name = "role", uniqueConstraints = { @UniqueConstraint(columnNames = "name") })
@SequenceGenerator(name = "role_seq", sequenceName = "role_id_seq")
@NamedQueries({ @NamedQuery(name = "role_roles", query = "select r from Role r order by r.ordering"),
        @NamedQuery(name = "role_name", query = "select r from Role r where r.name = :name") })
public class Role extends AraneaObject implements GrantedAuthority {

From source file piecework.authorization.AccessAuthority.java

/**
 * @author James Renfro
 */
public class AccessAuthority implements GrantedAuthority {

    private final Map<String, List<ResourceAuthority>> resourceAuthorityMap;

From source file org.mitre.openid.connect.client.SubjectIssuerGrantedAuthority.java

/**
 * 
 * Simple authority representing a user at an issuer.
 * 
 * @author jricher
 *

From source file es.ucm.fdi.dalgs.domain.UserRole.java

@Embeddable
public class UserRole implements GrantedAuthority, Serializable {

    /**
     * @see java.io.Serializable
     */

From source file com.devnexus.ting.model.UserAuthority.java

/**
 * The persistent class for the presentations database table.
 */
@Entity
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)