List of usage examples for java.security Principal interface-usage
From source file org.wso2.andes.server.security.auth.database.HashedUser.java
public class HashedUser implements Principal { private static final Logger _logger = Logger.getLogger(HashedUser.class); String _name; char[] _password; byte[] _encodedPassword = null;
From source file nl.surfnet.mujina.spring.User.java
@SuppressWarnings("serial") public class User implements Principal, Serializable { private final String name; private final String authenticationResponseIssuingEntityName; private final String authenticationAssertionIssuingEntityName;
From source file org.apache.jxtadoop.security.UserGroupInformation.java
/** A {@link Writable} abstract class for storing user and groups information. */ public abstract class UserGroupInformation implements Writable, Principal { public static final Log LOG = LogFactory.getLog(UserGroupInformation.class); private static UserGroupInformation LOGIN_UGI = null;
From source file org.opengroupware.logic.db.OGoAccount.java
/**
* OGoAccount
* <p>
* An account in the system. We keep them separate from OGoPerson's because
* accounts might be in an entirely different datasource.
* <p>
From source file com.clueride.domain.account.principal.BadgeOsPrincipal.java
/** * Identifies a given user in the BadgeOS system including email address, Name and user ID within WordPress. */ @Immutable public class BadgeOsPrincipal implements Principal { private Integer badgeOsUserId;
From source file dk.dma.msinm.user.User.java
/**
* Implementation of a user entity
*/
@Entity
@Cacheable
@NamedQueries({
From source file nl.b3p.catalog.security.GisPrincipal.java
public class GisPrincipal implements Principal { public static final String URL_AUTH = "code"; 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 nl.b3p.datastorelinker.security.GisPrincipal.java
public class GisPrincipal implements Principal { public static final String URL_AUTH = "code"; 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 io.dockstore.webservice.core.User.java
/** * Stores end user information * * @author xliu */ @ApiModel(value = "User", description = "End users for the dockstore")
From source file org.surfnet.oaaas.auth.principal.AuthenticatedPrincipal.java
/** * {@link Principal} that can contain roles and additional attributes. This is * the return Object for AbstractAuthenticator implementations. */ public class AuthenticatedPrincipal implements Serializable, Principal {