diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-23 05:27:39 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-23 05:27:39 +0000 |
commit | dbaa6d8375668b119e29997ef6bd39af19eb08c6 (patch) | |
tree | 8f9efc8737f82fd9e290917f1af723886d0f026c | |
parent | e9da2a82fc09863a169f4fb96a67da49a0d874c7 (diff) |
TUSCANY-2784 - Adding schema for Java EE implementation
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@736934 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/sca-implementation-jee.xsd | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/sca-implementation-jee.xsd b/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/sca-implementation-jee.xsd new file mode 100644 index 0000000000..83e6bb75bf --- /dev/null +++ b/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/sca-implementation-jee.xsd @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!-- (c) Copyright SCA Collaboration 2006 -->
+<schema xmlns="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://www.osoa.org/xmlns/sca/1.0"
+ xmlns:sca="http://www.osoa.org/xmlns/sca/1.0"
+ elementFormDefault="qualified">
+
+ <include schemaLocation="sca-core.xsd"/>
+
+ <element name="implementation.jee" type="sca:JEEImplementation" substitutionGroup="sca:implementation" />
+ <complexType name="JEEImplementation">
+ <complexContent>
+ <extension base="sca:Implementation">
+ <sequence>
+ <any namespace="##other" processContents="lax" minOccurs="0"
+ maxOccurs="unbounded" />
+ </sequence>
+ <attribute name="archive" type="string" use="required" />
+ <anyAttribute namespace="##any" processContents="lax" />
+ </extension>
+ </complexContent>
+ </complexType>
+</schema>
\ No newline at end of file |