acl_conf.dtd

来自「OPIAM stands for Open Identity and Acces」· DTD 代码 · 共 40 行

DTD
40
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?