本文整理了Java中org.nuxeo.ecm.core.api.security.ACL.clone()
方法的一些代码示例,展示了ACL.clone()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ACL.clone()
方法的具体详情如下:
包路径:org.nuxeo.ecm.core.api.security.ACL
类名称:ACL
方法名:clone
[英]Returns a recursive copy of the ACL sharing no mutable substructure with the original.
[中]返回与原始ACL不共享可变子结构的ACL的递归副本。
代码示例来源:origin: org.nuxeo.ecm.core/nuxeo-core-api
@Override
public ACPImpl clone() {
ACPImpl copy = new ACPImpl();
for (ACL acl : acls) {
copy.acls.add((ACL) acl.clone());
}
return copy;
}
代码示例来源:origin: opentoutatice-ecm.platform/opentoutatice-ecm-platform-automation
ACL treatAcl = (ACL) acl.clone();
内容来源于网络,如有侵权,请联系作者删除!