![slaws](/assets/img/avatar_default.png)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835348 13f79535-47bb-0310-9956-ffa450edef68
74 lines
No EOL
3.1 KiB
XML
74 lines
No EOL
3.1 KiB
XML
<?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.
|
|
-->
|
|
<schema targetNamespace="http://tuscany.apache.org/samples/alerter"
|
|
xmlns="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:ns="http://tuscany.apache.org/samples/alerter">
|
|
<element name="alerts" type="ns:alerts"/>
|
|
|
|
<complexType name="alert">
|
|
<sequence>
|
|
<element name="title" type="string"/>
|
|
<element name="summary" type="string"/>
|
|
<element name="address" type="anyURI" maxOccurs="1" minOccurs="1"/>
|
|
<element name="date" type="string" maxOccurs="1" minOccurs="1"/>
|
|
</sequence>
|
|
<attribute name="sourceid" type="string" use="optional"/>
|
|
<attribute name="unread" type="boolean" use="optional"/>
|
|
<attribute name="id" type="string" use="optional"/>
|
|
</complexType>
|
|
|
|
<complexType name="alerts">
|
|
<sequence>
|
|
<element name="alert" type="ns:alert" maxOccurs="unbounded" minOccurs="0" />
|
|
</sequence>
|
|
</complexType>
|
|
|
|
<element name="config" type="ns:config"/>
|
|
<element name="source" type="ns:source"/>
|
|
|
|
<complexType name="source">
|
|
<sequence>
|
|
<element name="name" type="string" maxOccurs="1" minOccurs="1"/>
|
|
<element name="address" type="anyURI" maxOccurs="1" minOccurs="1"/>
|
|
<element name="lastChecked" type="string" maxOccurs="1" minOccurs="0"/>
|
|
<element name="feedAddress" type="string" maxOccurs="1" minOccurs="0"/>
|
|
<element name="popServer" type="string" maxOccurs="1" minOccurs="0"/>
|
|
<element name="popUsername" type="string" maxOccurs="1" minOccurs="0"/>
|
|
<element name="popPassword" type="string" maxOccurs="1" minOccurs="0"/>
|
|
<any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
|
</sequence>
|
|
<attribute name="id" type="string" use="optional"/>
|
|
<attribute name="type" use="required">
|
|
<simpleType>
|
|
<restriction base="string">
|
|
<enumeration value="rss"/>
|
|
<enumeration value="pop"/>
|
|
<enumeration value="nntp"/>
|
|
</restriction>
|
|
</simpleType>
|
|
</attribute>
|
|
</complexType>
|
|
|
|
<complexType name="config">
|
|
<sequence>
|
|
<element name="source" type="ns:source" maxOccurs="unbounded" minOccurs="0"/>
|
|
</sequence>
|
|
</complexType>
|
|
</schema> |