requests_conf.dtd

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

DTD
54
字号
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--DTD of requests_conf.xml file. This files defines requests to be used together with Struts OPIAM Admin service. -->

<!-- Top level element defining one or several search requests. -->
<!ELEMENT requests (request*)>

<!-- 
This is a search request.
The name is a free form string, referred to in the application.
It must be associated with one or several resource_requests.
-->
<!ELEMENT request (ressource_request|resource_request)+>
<!ATTLIST request
	name CDATA #REQUIRED
>

<!--
This is one resource searched in one search request.
The name must be the name of the resource searched for.
It must be associated with one or several form fields.
-->
<!ELEMENT resource_request (formfield+)>
<!ATTLIST resource_request
	name CDATA #REQUIRED
>
<!--For compatibility-->
<!ELEMENT ressource_request (formfield+)>
<!ATTLIST ressource_request
	name CDATA #REQUIRED
>

<!-- 
This is a field of the search form.
One or several beanfields must be associated with the form field.
 * name : name of the form field
 * type (optional) : kind of search, in case it is not set in the form.
 *                   Allowed values are : BEGINS_WITH, ENDS_WITH, CONTAINS
 *                                        EQUALS, NOTCONTAINS, NOTEQUALS,
 *                                        APPROX_EQUALS, GREATERTHAN,
 *                                        LESSTHAN, EXISTS, NOTEXISTS,
 *                                        LESSOREQUALTHAN, GREATEROREQUALTHAN
 *                   Default value is EQUALS.
-->
<!ELEMENT formfield (beanfield+)>
<!ATTLIST formfield
	name CDATA #REQUIRED
	type CDATA #IMPLIED
>

<!-- This is a field of the object to be searched for -->
<!ELEMENT beanfield (#PCDATA)>


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?