List of usage examples for java.security Principal interface-usage
From source file fedora.server.security.servletfilters.Principal.java
/** * @author Bill Niebel */ public class Principal implements java.security.Principal { private final Log log = LogFactory.getLog(Principal.class);
From source file uk.org.ukfederation.uaattribute.authn.UserAgentPrincipal.java
/** A principal that identifies the user by the IP address of their user agent. */ public class UserAgentPrincipal implements Principal, Serializable { /** Serial version UID. */ private static final long serialVersionUID = -2038493216591713099L;
From source file at.ac.univie.isc.asio.tool.PrincipalMixin.java
/** Serialize principals to their name, suppressing other attributes (e.g. secrets) */ public interface PrincipalMixin extends Principal { @JsonValue @Override String getName(); }
From source file org.efaps.jaas.xml.AbstractXMLPrincipal.java
/**
* The abstract class is used to implement the person, role and group principal
* instances used by class {@link XMLUserLoginModule}.
*
* @author The eFaps Team
*
From source file keywhiz.auth.User.java
@AutoValue public abstract class User implements Principal { @JsonCreator public static User named(@NotNull @JsonProperty("name") String name) { return new AutoValue_User(name); }
From source file ddf.security.principal.AnonymousPrincipal.java
/** * Principal that designates a {@link ddf.security.Subject} as anonymous */ public class AnonymousPrincipal implements Principal { public static final String ANONYMOUS_NAME_PREFIX = "Anonymous";
From source file org.wso2.ppaas.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 ddf.security.principal.GuestPrincipal.java
/** * Principal that designates a {@link ddf.security.Subject} as guest */ public class GuestPrincipal implements Principal, Serializable { public static final String GUEST_NAME_PREFIX = "Guest";
From source file ste.web.acl.User.java
/** * * @author ste */ public class User implements Principal {
From source file org.codice.alliance.video.security.principal.videographer.VideographerPrincipal.java
public class VideographerPrincipal implements Principal, Serializable { public static final String VIDEOGRAPHER_NAME_PREFIX = "Videographer"; public static final String NAME_DELIMITER = "@";