summaryrefslogtreecommitdiffstats
path: root/tags/native-sca-1.0.incubating-M3-RC1/samples/AlertAggregator/sample.alerter/Alerter.xsd
blob: 73093facb1ca51b235a592417a9bb4c9ad6f3a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<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"/>
    </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>