- All Implemented Interfaces:
- DomainCombiner
public class SubjectDomainCombiner extends Object implements DomainCombiner
SubjectDomainCombiner updates ProtectionDomains
 with Principals from the Subject associated with this
 SubjectDomainCombiner.- Since:
- 1.4
- 
Constructor SummaryConstructors Constructor Description SubjectDomainCombiner(Subject subject)Associate the providedSubjectwith thisSubjectDomainCombiner.
- 
Method SummaryModifier and Type Method Description ProtectionDomain[]combine(ProtectionDomain[] currentDomains, ProtectionDomain[] assignedDomains)Update the relevant ProtectionDomains with the Principals from theSubjectassociated with thisSubjectDomainCombiner.SubjectgetSubject()Get theSubjectassociated with thisSubjectDomainCombiner.
- 
Constructor Details- 
SubjectDomainCombinerAssociate the providedSubjectwith thisSubjectDomainCombiner.- Parameters:
- subject- the- Subjectto be associated with this- SubjectDomainCombiner.
 
 
- 
- 
Method Details- 
getSubjectGet theSubjectassociated with thisSubjectDomainCombiner.- Returns:
- the Subjectassociated with thisSubjectDomainCombiner, ornullif noSubjectis associated with thisSubjectDomainCombiner.
- Throws:
- SecurityException- if the caller does not have permission to get the- Subjectassociated with this- SubjectDomainCombiner.
 
- 
combinepublic ProtectionDomain[] combine(ProtectionDomain[] currentDomains, ProtectionDomain[] assignedDomains)Update the relevant ProtectionDomains with the Principals from theSubjectassociated with thisSubjectDomainCombiner.A new ProtectionDomaininstance is created for each non-staticProtectionDomain( (staticPermissionsOnly() == false) in thecurrentDomainsarray. Each newProtectionDomaininstance is created using theCodeSource,Permissions andClassLoaderfrom the correspondingProtectionDomainincurrentDomains, as well as with the Principals from theSubjectassociated with thisSubjectDomainCombiner. Static ProtectionDomains are combined as-is and no new instance is created.All of the ProtectionDomains (static and newly instantiated) are combined into a new array. The ProtectionDomains from the assignedDomainsarray 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. - Specified by:
- combinein interface- DomainCombiner
- Parameters:
- currentDomains- the ProtectionDomains associated with the current execution Thread, up to the most recent privileged- ProtectionDomain. The ProtectionDomains are listed in order of execution, with the most recently executing- ProtectionDomainresiding at the beginning of the array. This parameter may be- nullif 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.
- Returns:
- a new array consisting of the updated ProtectionDomains,
          or null.
 
 
-