Class: javax.security.auth.Subject
- public final class Subject
- implements Serializable
A Subject represents a grouping of related information
for a single entity, such as a person.
Such information includes the Subject's identities as well as
its security-related attributes
(passwords and cryptographic keys, for example).
Subjects may potentially have multiple identities.
Each identity is represented as a Principal
within the Subject. Principals simply bind names to a
Subject. For example, a Subject that happens
to be a person, Alice, might have two Principals:
one which binds "Alice Bar", the name on her driver license,
to the Subject, and another which binds,
"999-99-9999", the number on her student identification card,
to the Subject. Both Principals refer to the same
Subject even though each has a different name.
A Subject may also own security-related attributes,
which are referred to as credentials.
Sensitive credentials that require special protection, such as
private cryptographic keys, are stored within a private credential
Set. Credentials intended to be shared, such as
public key certificates or Kerberos server tickets are stored
within a public credential Set. Different permissions
are required to access and modify the different credential Sets.
To retrieve all the Principals associated with a Subject,
invoke the getPrincipals method. To retrieve
all the public or private credentials belonging to a Subject,
invoke the getPublicCredentials method or
getPrivateCredentials method, respectively.
To modify the returned Set of Principals and credentials,
use the methods defined in the Set class.
For example:
Subject subject;
Principal principal;
Object credential;
// add a Principal and credential to the Subject
subject.getPrincipals().add(principal);
subject.getPublicCredentials().add(credential);
This Subject class implements Serializable.
While the Principals associated with the Subject are serialized,
the credentials associated with the Subject are not.
Note that the java.security.Principal class
does not implement Serializable. Therefore all concrete
Principal implementations associated with Subjects
must implement Serializable.
Methods
-
Subjecttop
public Subject()Create an instance of aSubjectwith an emptySetof Principals and empty Sets of public and private credentials.The newly constructed Sets check whether this
Subjecthas been set read-only before permitting subsequent modifications. The newly created Sets also prevent illegal modifications by ensuring that callers have sufficient permissions.To modify the Principals Set, the caller must have
AuthPermission("modifyPrincipals"). To modify the public credential Set, the caller must haveAuthPermission("modifyPublicCredentials"). To modify the private credential Set, the caller must haveAuthPermission("modifyPrivateCredentials"). -
Subjecttop
public Subject(boolean readOnly, Set<? extends Principal> principals, Set<?> pubCredentials, Set<?> privCredentials)Create an instance of aSubjectwith Principals and credentials.The Principals and credentials from the specified Sets are copied into newly constructed Sets. These newly created Sets check whether this
Subjecthas been set read-only before permitting subsequent modifications. The newly created Sets also prevent illegal modifications by ensuring that callers have sufficient permissions.To modify the Principals Set, the caller must have
AuthPermission("modifyPrincipals"). To modify the public credential Set, the caller must haveAuthPermission("modifyPublicCredentials"). To modify the private credential Set, the caller must haveAuthPermission("modifyPrivateCredentials"). -
doAstop
public static <T> T doAs(Subject subject, PrivilegedAction<T> action)Perform work as a particularSubject.This method first retrieves the current Thread's
AccessControlContextviaAccessController.getContext, and then instantiates a newAccessControlContextusing the retrieved context along with a newSubjectDomainCombiner(constructed using the providedSubject). Finally, this method invokesAccessController.doPrivileged, passing it the providedPrivilegedAction, as well as the newly constructedAccessControlContext. -
doAstop
public static <T> T doAs(Subject subject, PrivilegedExceptionAction<T> action) throws PrivilegedActionExceptionPerform work as a particularSubject.This method first retrieves the current Thread's
AccessControlContextviaAccessController.getContext, and then instantiates a newAccessControlContextusing the retrieved context along with a newSubjectDomainCombiner(constructed using the providedSubject). Finally, this method invokesAccessController.doPrivileged, passing it the providedPrivilegedExceptionAction, as well as the newly constructedAccessControlContext. -
doAsPrivilegedtop
public static <T> T doAsPrivileged(Subject subject, PrivilegedAction<T> action, AccessControlContext acc)Perform privileged work as a particularSubject.This method behaves exactly as
Subject.doAs, except that instead of retrieving the current Thread'sAccessControlContext, it uses the providedAccessControlContext. If the providedAccessControlContextisnull, this method instantiates a newAccessControlContextwith an empty collection of ProtectionDomains. -
doAsPrivilegedtop
public static <T> T doAsPrivileged(Subject subject, PrivilegedExceptionAction<T> action, AccessControlContext acc) throws PrivilegedActionExceptionPerform privileged work as a particularSubject.This method behaves exactly as
Subject.doAs, except that instead of retrieving the current Thread'sAccessControlContext, it uses the providedAccessControlContext. If the providedAccessControlContextisnull, this method instantiates a newAccessControlContextwith an empty collection of ProtectionDomains. -
equalstop
public boolean equals(Object o)Compares the specified Object with thisSubjectfor equality. Returns true if the given object is also a Subject and the twoSubjectinstances are equivalent. More formally, twoSubjectinstances are equal if theirPrincipalandCredentialSets are equal. -
getPrincipalstop
Return theSetof Principals associated with thisSubject. EachPrincipalrepresents an identity for thisSubject.The returned
Setis backed by this Subject's internalPrincipalSet. Any modification to the returnedSetaffects the internalPrincipalSetas well. -
getPrincipalstop
Return aSetof Principals associated with thisSubjectthat are instances or subclasses of the specifiedClass.The returned
Setis not backed by this Subject's internalPrincipalSet. A newSetis created and returned for each method invocation. Modifications to the returnedSetwill not affect the internalPrincipalSet. -
getPrivateCredentialstop
Return theSetof private credentials held by thisSubject.The returned
Setis backed by this Subject's internal private CredentialSet. Any modification to the returnedSetaffects the internal private CredentialSetas well.A caller requires permissions to access the Credentials in the returned
Set, or to modify theSetitself. ASecurityExceptionis thrown if the caller does not have the proper permissions.While iterating through the
Set, aSecurityExceptionis thrown if the caller does not have permission to access a particular Credential. TheIteratoris nevertheless advanced to next element in theSet. -
getPrivateCredentialstop
Return aSetof private credentials associated with thisSubjectthat are instances or subclasses of the specifiedClass.The caller must have permission to access all of the requested Credentials, or a
SecurityExceptionwill be thrown.The returned
Setis not backed by this Subject's internal private CredentialSet. A newSetis created and returned for each method invocation. Modifications to the returnedSetwill not affect the internal private CredentialSet. -
getPublicCredentialstop
Return theSetof public credentials held by thisSubject.The returned
Setis backed by this Subject's internal public CredentialSet. Any modification to the returnedSetaffects the internal public CredentialSetas well. -
getPublicCredentialstop
Return aSetof public credentials associated with thisSubjectthat are instances or subclasses of the specifiedClass.The returned
Setis not backed by this Subject's internal public CredentialSet. A newSetis created and returned for each method invocation. Modifications to the returnedSetwill not affect the internal public CredentialSet. -
getSubjecttop
public static Subject getSubject(AccessControlContext acc)Get theSubjectassociated with the providedAccessControlContext.The
AccessControlContextmay contain many Subjects (from nesteddoAscalls). In this situation, the most recentSubjectassociated with theAccessControlContextis returned. -
hashCodetop
public int hashCode()Returns a hashcode for thisSubject. -
isReadOnlytop
public boolean isReadOnly()Query whether thisSubjectis read-only. -
setReadOnlytop
public void setReadOnly()Set thisSubjectto be read-only.Modifications (additions and removals) to this Subject's
PrincipalSetand credential Sets will be disallowed. Thedestroyoperation on this Subject's credentials will still be permitted.Subsequent attempts to modify the Subject's
Principaland credential Sets will result in anIllegalStateExceptionbeing thrown. Also, once aSubjectis read-only, it can not be reset to being writable again. -
toStringtop
public String toString()Return the String representation of thisSubject.
