Example usage for java.security Principal interface-usage

List of usage examples for java.security Principal interface-usage

Introduction

In this page you can find the example usage for java.security Principal interface-usage.

Usage

From source file org.energyos.espi.common.domain.RetailCustomer.java

@SuppressWarnings("serial")
// the above suppress warnings is b/c the serial will get pushed on through the
// the database...
@XmlRootElement(name = "RetailCustomer")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RetailCustomer")

From source file nl.b3p.kaartenbalie.core.server.User.java

public class User implements Principal {

    private static final Log log = LogFactory.getLog(User.class);

    private Integer id;
    private String firstName;

From source file edu.ku.brc.specify.datamodel.SpPrincipal.java

/**
    
 */
@SuppressWarnings("serial")
@Entity
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)

From source file com.javaeeeee.dropbookmarks.core.User.java

/**
 *
 * @author Dmitry Noranovich javaeeeee (at) gmail (dot) com
 */
@Entity
@Table(name = "users")

From source file fr.paris.lutece.portal.service.security.LuteceUser.java

/**
 * This Interface defines all methods required for a Lutece user implementation
 */
public abstract class LuteceUser implements Principal, Serializable, Cloneable {
    /* These attribute names are derived from the Platform for Privacy
     * Preferences 1.0 (P3P 1.0) Specification by the

From source file ips1ap101.lib.core.control.UsuarioAutenticado.java

/**
 * @author Jorge Campins
 */
public class UsuarioAutenticado extends UsuarioActual implements Principal, Serializable {

    private static final String ROL_SUPER_GESTOR = "SuperGestor";

From source file nl.b3p.gis.viewer.services.GisPrincipal.java

public class GisPrincipal implements Principal {

    private static final Log log = LogFactory.getLog(GisPrincipal.class);
    private String name;
    private String password;
    /*TODO ipv code misschien hele kaartenbalie url??? */

From source file org.geosdi.geoplatform.experimental.dropwizard.auth.model.GPAuthenticatedPrincipal.java

/**
 *
 * @author Giuseppe La Scaleia - CNR IMAA geoSDI Group
 * @email giuseppe.lascaleia@geosdi.org
 */
public class GPAuthenticatedPrincipal implements Serializable, Principal {

From source file org.ng200.openolympus.model.User.java

@Entity
@Table(name = "Users", indexes = { @Index(columnList = "username") })
public class User implements UserDetails, Serializable, Principal {

    /**
     *

From source file gov.nih.nci.security.authorization.domainobjects.Group.java

/**
 * A Group is a logical collection of users. A group belongs to an application.
 * @version 1.0
 * created 03-Dec-2004 1:17:49 AM
 */
public class Group implements Principal, Comparable, Serializable {