📄 acl_conf.dtd
字号:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- OPIAM Admin Access control service DTD -->
<!--
Top level element : set of Access control rules
classname : class performing the access control.
It must implement opiam.admin.faare.service.services.acl.AclPluginInterface
-->
<!ELEMENT acls (acl+)>
<!ATTLIST acls
classname CDATA #REQUIRED
>
<!--
Access control rule. All elements and attributes must be interpreted by the ACL plugin.
targetname : name of the rule
mayvisualize : global visualisation allowed
maycreate : global creation allowed
maydelete : global deletion allowed
maymodify : global modification allowed
modattr : list of modifiable attributes
param : plugin specific parameters
-->
<!ELEMENT acl (modattr*, param*)>
<!ATTLIST acl
targetname CDATA #REQUIRED
mayvisualize CDATA #REQUIRED
maycreate CDATA #REQUIRED
maydelete CDATA #REQUIRED
maymodify CDATA #REQUIRED
>
<!-- modifiable attribute name-->
<!ELEMENT modattr (#PCDATA)>
<!-- plugin specific parameter, with a name and a value -->
<!ELEMENT param (param-name, param-value)>
<!ELEMENT param-name (#PCDATA)>
<!ELEMENT param-value (#PCDATA)>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -