| java.lang.Object | |
| ↳ | javax.security.auth.SubjectDomainCombiner | 
|  Known Direct Subclasses | 
A SubjectDomainCombiner updates ProtectionDomains
 with Principals from the Subject associated with this
 SubjectDomainCombiner.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Associate the provided  Subjectwith thisSubjectDomainCombiner. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Update the relevant ProtectionDomains with the Principals
 from the  Subjectassociated with thisSubjectDomainCombiner. | |||||||||||
| Get the  Subjectassociated with thisSubjectDomainCombiner. | |||||||||||
| [Expand] Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class
  java.lang.Object | |||||||||||
|  From interface
  java.security.DomainCombiner | |||||||||||
Associate the provided Subject with this
 SubjectDomainCombiner.
 
| subject | the Subjectto be associated with
          with thisSubjectDomainCombiner. | 
|---|
Update the relevant ProtectionDomains with the Principals
 from the Subject associated with this
 SubjectDomainCombiner.
 
 A new ProtectionDomain instance is created
 for each ProtectionDomain in the
 currentDomains array.  Each new ProtectionDomain
 instance is created using the CodeSource,
 Permissions and ClassLoader
 from the corresponding ProtectionDomain in
 currentDomains, as well as with the Principals from
 the Subject associated with this
 SubjectDomainCombiner.
 
All of the newly instantiated ProtectionDomains are combined into a new array. The ProtectionDomains from the assignedDomains array are appended to this new array, and the result is returned.
Note that optimizations such as the removal of duplicate ProtectionDomains may have occurred. In addition, caching of ProtectionDomains may be permitted.
| currentDomains | the ProtectionDomains associated with the
          current execution Thread, up to the most recent
          privileged ProtectionDomain.
          The ProtectionDomains are are listed in order of execution,
          with the most recently executingProtectionDomainresiding at the beginning of the array. This parameter may
          benullif the current execution Thread
          has no associated ProtectionDomains. | 
|---|---|
| assignedDomains | the ProtectionDomains inherited from the
          parent Thread, or the ProtectionDomains from the
          privileged context, if a call to
          AccessController.doPrivileged(..., context)
          had occurred  This parameter may be nullif there were no ProtectionDomains inherited from the
          parent Thread, or from the privileged context. | 
null.
Get the Subject associated with this
 SubjectDomainCombiner.
 
Subject associated with this
          SubjectDomainCombiner, or null
          if no Subject is associated with this
          SubjectDomainCombiner.| SecurityException | if the caller does not have permission
          to get the Subjectassociated with thisSubjectDomainCombiner. | 
|---|