blob: 43c5f31c2838767dfcd4a0558d513084bbbc63d5 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<!-- $Id$ -->
<!--
DTD module for RDC component configuration.
This XML structure is used to configure dialog components.
-->
<!-- ===== Root Element ===== -->
<!-- Element config: Configure dialog components -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
<xs:element name="config">
<xs:complexType>
<xs:sequence>
<xs:element ref="input"/>
<xs:element ref="confirm"/>
<xs:element ref="validate"/>
<xs:element ref="echo"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="custom"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="input">
<xs:complexType>
<xs:sequence>
<xs:element ref="property-list"/>
<xs:element ref="prompt-list"/>
<xs:element ref="help-list"/>
<xs:element ref="noinput-list"/>
<xs:element ref="nomatch-list"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="confirm">
<xs:complexType>
<xs:sequence>
<xs:element ref="property-list"/>
<xs:element ref="prompt-list"/>
<xs:element ref="help-list"/>
<xs:element ref="noinput-list"/>
<xs:element ref="nomatch-list"/>
<xs:element ref="reject"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="validate">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="handler"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="echo">
<xs:complexType>
<xs:sequence>
<xs:element ref="property-list"/>
<xs:element ref="prompt-list"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="custom">
<xs:complexType>
<xs:sequence>
<xs:element ref="property-list"/>
<xs:element ref="prompt-list"/>
<xs:element ref="help-list"/>
<xs:element ref="noinput-list"/>
<xs:element ref="nomatch-list"/>
</xs:sequence>
<xs:attribute name="role" use="required"/>
</xs:complexType>
</xs:element>
<!--
role Identify this custom section's purpose. Used
a as a selector.
-->
<xs:element name="handler">
<xs:complexType mixed="true">
<xs:group minOccurs="0" maxOccurs="unbounded" ref="event.handler.content"/>
<xs:attribute name="errorCode" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="reject">
<xs:complexType mixed="true">
<xs:group minOccurs="0" maxOccurs="unbounded" ref="event.handler.content"/>
</xs:complexType>
</xs:element>
<xs:element name="property-list">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="property"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="prompt-list">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="prompt"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="help-list">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="help"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="noinput-list">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="noinput"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="nomatch-list">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="nomatch"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>