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 br.org.pucsc.carteira.entity.Role.java

@Entity
@Table(name = "role")
public class Role implements Serializable, GrantedAuthority {

    private static final long serialVersionUID = 1L;

From source file nl.surfnet.coin.selfservice.domain.CoinAuthority.java

/**
 * Simple implementation of a {@link GrantedAuthority}
 */
@SuppressWarnings("serial")
public class CoinAuthority implements GrantedAuthority {

From source file models.Role.java

@Entity
@Table(name = "roles")
@JsonIdentityInfo(generator = IntSequenceGenerator.class, property = "@id")
public class Role implements Serializable, GrantedAuthority {

    @Id

From source file org.bwgz.swim.openlane.spring.model.OpenLaneAuthority.java

@Entity
@Table(name = "OpenLaneAuthorities")
public class OpenLaneAuthority implements GrantedAuthority, Serializable {
    private static final long serialVersionUID = -3475658623185783516L;

    private String username;

From source file org.socialhistoryservices.security.MongoAuthority.java

/**
 * Authority for a document in Mongo
 */
public class MongoAuthority implements GrantedAuthority {

    private String authority;

From source file com.what2p.domains.Role.java

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

    private static final long serialVersionUID = 1L;

From source file net.navasoft.madcoin.backend.services.security.RoleAuthority.java

/**
 * net.navasoft.madcoin.backend.services.security Class class RoleAuthority.
 * Description:
 * 
 * @author Juan Diego Navarre Gonzalez - (<a
 *         href="mailto:jdnavarreg@outlook.com">{@literal jdnavarreg@outlook.com}

From source file org.lecture.model.Authority.java

/**
 * Entity that represents Authoritys.
 * @author Rene Richter
 */
@Entity
@Table(name = "authorities")

From source file de.iew.framework.domain.principals.Authority.java

/**
 * Beschreibt ein Domainmodell fr die Verwaltung einer Authority.
 * <p>
 * Authorities bezeichnen Rollen im System und umfassen in der Regel eine
 * Aufgabe, wie zum Beispiel Datenbank Administrator. ber Authorities kann
 * der Zugriff auf Domainmodelle und Funktionen durch die ACL gesteuert werden.

From source file technology.tikal.gae.security.model.InternalGrantedAuthority.java

/**
 * 
 * @author Nekorp
 *
 */
public class InternalGrantedAuthority implements GrantedAuthority {