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 ro.allevo.fintpws.model.RoleEntity.java

@Entity
@Table(schema = "FINCFG", name = "ROLES")
@NamedQueries({
        @NamedQuery(name = "RoleEntity.findAll", query = "SELECT r FROM RoleEntity r order by r.roleid asc"),
        @NamedQuery(name = "RoleEntity.findTotal", query = "SELECT count(r) FROM RoleEntity r"),
        @NamedQuery(name = "RoleEntity.findByName", query = "SELECT r FROM RoleEntity r WHERE trim(r.name)=:name"),

From source file org.apache.syncope.core.spring.security.SyncopeGrantedAuthority.java

public class SyncopeGrantedAuthority implements GrantedAuthority {

    private static final long serialVersionUID = -5647624636011919735L;

    @JsonProperty
    private final String entitlement;

From source file gr.abiss.calipso.model.Role.java

/**
 */
@Entity
@Table(name = "role")
@Inheritance(strategy = InheritanceType.JOINED)
//@ApiModel(value = "Role", description = "User principal roles. Roles are principals themselves and can be assigned to users.")

From source file be.bittich.quote.model.Role.java

/**
 *
 * @author nateriver
 */
@Entity
@Table(name = "role")

From source file es.galvarez.rest.model.Role.java

/**
 * @author Gonzalo Alvarez
 *
 */
@Entity
@Table(uniqueConstraints = @UniqueConstraint(name = "ROLE_U", columnNames = "AUTHORITY"))

From source file com.econcept.entity.UserAuthority.java

@Entity
@Table(name = "USER_AUTHORITY")
public class UserAuthority implements GrantedAuthority {
    /**
     * SerialVersionUID
     */

From source file org.jrecruiter.model.Role.java

/**
 * Represents a User Role.
 *
 * @author Gunnar Hillert
 * @version @version $Id$
 */

From source file org.deegree.securityproxy.authentication.ows.raster.RasterPermission.java

/**
 * Encapsulates a permission to access a secured WCS.
 * 
 * @author <a href="stenger@lat-lon.de">Dirk Stenger</a>
 * @author <a href="goltz@lat-lon.de">Lyn Goltz</a>
 * @author <a href="erben@lat-lon.de">Alexander Erben</a>

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

/**
 *
 * @author jdmr
 */
@Entity
@Table(name = "roles")

From source file com.impetus.ankush.common.domain.Role.java

/**
 * This class is used to represent available roles in the database.
 *
 */
@Entity
@Table(name = "role")