- 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 Summary
Constructors Constructor Description SubjectDomainCombiner(Subject subject)
Associate the providedSubject
with thisSubjectDomainCombiner
. -
Method Summary
Modifier and Type Method Description ProtectionDomain[]
combine(ProtectionDomain[] currentDomains, ProtectionDomain[] assignedDomains)
Update the relevant ProtectionDomains with the Principals from theSubject
associated with thisSubjectDomainCombiner
.Subject
getSubject()
Get theSubject
associated with thisSubjectDomainCombiner
.
-
Constructor Details
-
SubjectDomainCombiner
Associate the providedSubject
with thisSubjectDomainCombiner
.- Parameters:
subject
- theSubject
to be associated with thisSubjectDomainCombiner
.
-
-
Method Details
-
getSubject
Get theSubject
associated with thisSubjectDomainCombiner
.- Returns:
- the
Subject
associated with thisSubjectDomainCombiner
, ornull
if noSubject
is associated with thisSubjectDomainCombiner
. - Throws:
SecurityException
- if the caller does not have permission to get theSubject
associated with thisSubjectDomainCombiner
.
-
combine
public ProtectionDomain[] combine(ProtectionDomain[] currentDomains, ProtectionDomain[] assignedDomains)Update the relevant ProtectionDomains with the Principals from theSubject
associated with thisSubjectDomainCombiner
.A new
ProtectionDomain
instance is created for each non-staticProtectionDomain
( (staticPermissionsOnly() == false) in thecurrentDomains
array. Each newProtectionDomain
instance is created using theCodeSource
,Permission
s andClassLoader
from the correspondingProtectionDomain
incurrentDomains
, as well as with the Principals from theSubject
associated 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
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.
- Specified by:
combine
in interfaceDomainCombiner
- Parameters:
currentDomains
- the ProtectionDomains associated with the current execution Thread, up to the most recent privilegedProtectionDomain
. The ProtectionDomains are listed in order of execution, with the most recently executingProtectionDomain
residing at the beginning of the array. This parameter may benull
if the current execution Thread has no associated ProtectionDomains.assignedDomains
- the ProtectionDomains inherited from the parent Thread, or the ProtectionDomains from the privilegedcontext
, if a call toAccessController.doPrivileged(..., context)
had occurred This parameter may benull
if there were no ProtectionDomains inherited from the parent Thread, or from the privilegedcontext
.- Returns:
- a new array consisting of the updated ProtectionDomains,
or
null
.
-