Class SubjectDomainCombiner
- All Implemented Interfaces:
DomainCombiner
- Since:
- 1.4
-
Constructor Summary
ConstructorsConstructorDescriptionSubjectDomainCombiner
(Subject subject) Deprecated, for removal: This API element is subject to removal in a future version.Associate the providedSubject
with thisSubjectDomainCombiner
. -
Method Summary
Modifier and TypeMethodDescriptioncombine
(ProtectionDomain[] currentDomains, ProtectionDomain[] assignedDomains) Deprecated, for removal: This API element is subject to removal in a future version.Update the relevant ProtectionDomains with the Principals from theSubject
associated with thisSubjectDomainCombiner
.Deprecated, for removal: This API element is subject to removal in a future version.Get theSubject
associated with thisSubjectDomainCombiner
.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
SubjectDomainCombiner
Deprecated, for removal: This API element is subject to removal in a future version.Associate the providedSubject
with thisSubjectDomainCombiner
.- Parameters:
subject
- theSubject
to be associated with thisSubjectDomainCombiner
.
-
-
Method Details
-
getSubject
Deprecated, for removal: This API element is subject to removal in a future version.Get theSubject
associated with thisSubjectDomainCombiner
.- Returns:
- the
Subject
associated with thisSubjectDomainCombiner
, ornull
if noSubject
is associated with thisSubjectDomainCombiner
.
-
combine
public ProtectionDomain[] combine(ProtectionDomain[] currentDomains, ProtectionDomain[] assignedDomains) Deprecated, for removal: This API element is subject to removal in a future version.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. 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 inherited ProtectionDomains. This parameter may benull
if there were no inherited ProtectionDomains.- Returns:
- a new array consisting of the updated ProtectionDomains,
or
null
.
-