public interface DomainCombiner
| Modifier and Type | Method and Description |
|---|---|
ProtectionDomain[] |
combine(ProtectionDomain[] current,
ProtectionDomain[] assigned)
Returns a combination of the two provided
ProtectionDomain
arrays. |
ProtectionDomain[] combine(ProtectionDomain[] current, ProtectionDomain[] assigned)
ProtectionDomain
arrays. Implementers can simply merge the two arrays into one, remove
duplicates and perform other optimizations.current - the protection domains of the current execution threadassigned - the protection domains of the parent thread, may be null.ProtectionDomain array computed from the two
provided arrays.