java命名空间java.security接口domaincombiner的类成员方法:
combine定义及介绍
本文导语:
combine
protectiondomain[] combine(protectiondomain[] currentdomains,
protectiondomain[] assigneddomains)
修改或更新提供的 protectiondomain。可以将 protectiondomain 添加到给定的 protectiondomain 中,也可以从中移除。可以重新...
combine
protectiondomain[] combine(protectiondomain[] currentdomains,
protectiondomain[] assigneddomains)
- 修改或更新提供的 protectiondomain。可以将 protectiondomain 添加到给定的 protectiondomain 中,也可以从中移除。可以重新排列 protectiondomain 的顺序。可以修改个别 protectiondomain(例如,利用新的 permission 的集合)。
- 参数:
currentdomains
- 与当前执行线程关联的 protectiondomain,直到最近的特权 protectiondomain
.protectiondomain 按执行的顺序列出,最近执行的 protectiondomain
位于数组的开头。如果当前执行的线程没有任何关联的 protectiondomain,则此参数为 null
。assigneddomains
- 继承的 protectiondomain 组成的数组。protectiondomain 可能是从父线程或特权 accesscontrolcontext
继承的。如果不存在任何继承的 protectiondomain,则此参数为 null
。
- 返回:
- 由更新的 protectiondomain 组成的新数组;或者
null
。