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 providedSubjectwith 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 theSubjectassociated with thisSubjectDomainCombiner.Deprecated, for removal: This API element is subject to removal in a future version.Get theSubjectassociated with thisSubjectDomainCombiner.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()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.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(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 voidwait(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 providedSubjectwith thisSubjectDomainCombiner.- Parameters:
subject- theSubjectto be associated with thisSubjectDomainCombiner.
-
-
Method Details
-
getSubject
Deprecated, for removal: This API element is subject to removal in a future version.Get theSubjectassociated with thisSubjectDomainCombiner.- Returns:
- the
Subjectassociated with thisSubjectDomainCombiner, ornullif noSubjectis 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 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 interfaceDomainCombiner- Parameters:
currentDomains- the ProtectionDomains associated with the current execution Thread. The ProtectionDomains 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 inherited ProtectionDomains. This parameter may benullif there were no inherited ProtectionDomains.- Returns:
- a new array consisting of the updated ProtectionDomains,
or
null.
-