summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/itest/workspace-manager/src/main/resources/implementation-xyz.xsd
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-07-24 17:48:23 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-07-24 17:48:23 +0000
commit00b04245e37062f04461a2f67ee79cff72c9a956 (patch)
tree2a4aa55a167aa6e10a738ddf9183370761d78c32 /branches/sca-java-1.x/itest/workspace-manager/src/main/resources/implementation-xyz.xsd
parent38f008a47e7f76d39938264babf2da3508a1903a (diff)
TUSCANY-3174 - add an itest to update the extension point registry programmatically with some dummy XYZ extensions and process a contribution
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@797577 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/itest/workspace-manager/src/main/resources/implementation-xyz.xsd')
-rw-r--r--branches/sca-java-1.x/itest/workspace-manager/src/main/resources/implementation-xyz.xsd24
1 files changed, 24 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/itest/workspace-manager/src/main/resources/implementation-xyz.xsd b/branches/sca-java-1.x/itest/workspace-manager/src/main/resources/implementation-xyz.xsd
new file mode 100644
index 0000000000..7527779cda
--- /dev/null
+++ b/branches/sca-java-1.x/itest/workspace-manager/src/main/resources/implementation-xyz.xsd
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- (c) Copyright SCA Collaboration 2006 -->
+<schema xmlns="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://someuri"
+ xmlns:tns="http://someuri"
+ xmlns:sca="http://www.osoa.org/xmlns/sca/1.0"
+ elementFormDefault="qualified">
+
+ <import namespace="http://www.osoa.org/xmlns/sca/1.0"/>
+
+ <element name="implementation.xyz" type="tns:XYZImplementation"/>
+
+ <complexType name="XYZImplementation">
+ <complexContent>
+ <extension base="sca:Implementation">
+ <sequence>
+ <any namespace="##targetNamespace" processContents="lax"
+ minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attribute name="anAttribute" type="string" use="required"/>
+ </extension>
+ </complexContent>
+ </complexType>
+</schema> \ No newline at end of file