List of usage examples for java.security Principal interface-usage
From source file org.jboss.dashboard.security.principals.DefaultPrincipal.java
public class DefaultPrincipal implements Principal, Serializable { private String name; public DefaultPrincipal() { this.name = null;
From source file org.slc.sli.dashboard.security.SLIPrincipal.java
/**
* Attribute holder for SLI Principal
*
* @author dkornishev
*
*/
From source file org.apache.stratos.rest.endpoint.security.StratosPrincipal.java
/** * {@link StratosSecurityContext} make use of principal instance. Here with Stratos * authentication/authorization framework we only need username as the principal details */ public class StratosPrincipal implements Principal { private Log log = LogFactory.getLog(StratosPrincipal.class);
From source file org.apache.stratos.metadataservice.security.StratosPrincipal.java
/** * {@link StratosSecurityContext} make use of principal instance. Here with Stratos * authentication/authorization framework we only need username as the principal details */ public class StratosPrincipal implements Principal { private Log log = LogFactory.getLog(StratosPrincipal.class);
From source file org.apache.stratos.metadata.service.security.StratosPrincipal.java
/** * {@link StratosSecurityContext} make use of principal instance. Here with Stratos * authentication/authorization framework we only need username as the principal details */ public class StratosPrincipal implements Principal { private Log log = LogFactory.getLog(StratosPrincipal.class);
From source file com.coffeebeans.services.api.security.CoffeeBeansPrincipal.java
/** * Created by muhamadto on 12/07/2015. */ @Data public class CoffeeBeansPrincipal implements Principal { @NotNull
From source file com.hp.autonomy.hod.sso.HodAuthenticationPrincipal.java
@Getter @EqualsAndHashCode public class HodAuthenticationPrincipal implements Principal, Serializable { private static final long serialVersionUID = 1968689406768358794L; private final UUID tenantUuid;
From source file com.nike.cerberus.security.VaultAuthPrincipal.java
/** * Represents the authenticated principal. This contains the vault client token entity and any assigned roles based * on that. */ public class VaultAuthPrincipal implements Principal {
From source file opensnap.security.UserAdapter.java
public class UserAdapter implements UserDetails, Principal { private User user; public UserAdapter(User user) { this.user = user;
From source file com.sciamlab.ckan4j.model.User.java
public class User implements JSONString, Principal { private String id; private String username; private String firstName; private String lastName;