summaryrefslogtreecommitdiffstats
path: root/tags/native-sca-1.0.incubating-M3/samples/AlertAggregator/sample.display/Alerter.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'tags/native-sca-1.0.incubating-M3/samples/AlertAggregator/sample.display/Alerter.xsd')
-rw-r--r--tags/native-sca-1.0.incubating-M3/samples/AlertAggregator/sample.display/Alerter.xsd73
1 files changed, 0 insertions, 73 deletions
diff --git a/tags/native-sca-1.0.incubating-M3/samples/AlertAggregator/sample.display/Alerter.xsd b/tags/native-sca-1.0.incubating-M3/samples/AlertAggregator/sample.display/Alerter.xsd
deleted file mode 100644
index c59460995d..0000000000
--- a/tags/native-sca-1.0.incubating-M3/samples/AlertAggregator/sample.display/Alerter.xsd
+++ /dev/null
@@ -1,73 +0,0 @@
-<?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"/>
- </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> \ No newline at end of file