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 uk.org.rbc1b.roms.security.ROMSGrantedAuthority.java

/**
 * Granted authority, with specific levels for department and non-department access.
 * @author oliver.elder.esq
 */
public class ROMSGrantedAuthority implements GrantedAuthority {
    private static final long serialVersionUID = 7170344476765512185L;

From source file org.openmrs.contrib.metadatarepository.model.Role.java

/**
 * This class is used to represent available roles in the database.
 *
 * @author <a href="mailto:matt@raibledesigns.com">Matt Raible</a>
 *         Version by Dan Kibler dan@getrolling.com
 *         Extended to implement Acegi GrantedAuthority interface

From source file org.osiam.storage.entities.RolesEntity.java

/**
 * Roles Entity
 */
@Entity(name = "scim_roles")
public class RolesEntity extends MultiValueAttributeEntitySkeleton implements GrantedAuthority {

From source file com.organization.projectname.models.Authority.java

/**
 *
 * @author Muhamad Ridwan <me@muhamadridwan.id>
 */
@Entity
public class Authority implements GrantedAuthority {

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

/**
 * This class is used to represent available roles in the database.
 *
 * @author <a href="mailto:matt@raibledesigns.com">Matt Raible</a>
 *         Version by Dan Kibler dan@getrolling.com
 *         Extended to implement Acegi GrantedAuthority interface

From source file org.mzd.shap.domain.authentication.Role.java

@Entity
@Table(name = "Roles")
public class Role implements GrantedAuthority, Serializable {
    private static final long serialVersionUID = -2099562188217771013L;
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)

From source file net.rrm.ehour.domain.UserRole.java

@Entity
@Table(name = "USER_ROLE")
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public class UserRole extends DomainObject<String, UserRole> implements GrantedAuthority {
    private static final long serialVersionUID = 3806904191272349157L;

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

public class SyncopeGrantedAuthority implements GrantedAuthority {

    private static final long serialVersionUID = -5647624636011919735L;

    private final String entitlement;

From source file com.searchbox.framework.domain.UserRole.java

@SuppressWarnings("serial")
@Entity
public class UserRole implements GrantedAuthority {

    public enum Role {
        SYSTEM, ADMIN, USER

From source file com.gazbert.bxbot.rest.security.Role.java

/**
 * Encapsulates a role containing selected users of the REST API.
 *
 * @author gazbert
 */
@Entity