diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-11 23:08:20 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-11 23:08:20 +0000 |
commit | 61c9466ff91ca40f4b1ebbe670d7848e521131d7 (patch) | |
tree | d41cd727b04a6146533cc3ad97182e715cd61e32 /sca-java-1.x/branches/sca-java-1.3.3/modules/assembly-xsd/src/main/resources/sca-contributions.xsd | |
parent | 0cc8ed2208c9d04057bcb00859490290e3aa948c (diff) |
Moving 1.x branches
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835130 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/branches/sca-java-1.3.3/modules/assembly-xsd/src/main/resources/sca-contributions.xsd')
-rw-r--r-- | sca-java-1.x/branches/sca-java-1.3.3/modules/assembly-xsd/src/main/resources/sca-contributions.xsd | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.3.3/modules/assembly-xsd/src/main/resources/sca-contributions.xsd b/sca-java-1.x/branches/sca-java-1.3.3/modules/assembly-xsd/src/main/resources/sca-contributions.xsd new file mode 100644 index 0000000000..a22d8ac075 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.3.3/modules/assembly-xsd/src/main/resources/sca-contributions.xsd @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- (c) Copyright SCA Collaboration 2007 --> +<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="contribution" type="sca:ContributionType"/> + <complexType name="ContributionType"> + <sequence> + <element name="deployable" type="sca:DeployableType" minOccurs="1" maxOccurs="unbounded"/> + <element name="import" type="sca:ImportType" minOccurs="0" maxOccurs="unbounded"/> + <element name="export" type="sca:ExportType" minOccurs="0" maxOccurs="unbounded"/> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + <anyAttribute namespace="##other" processContents="lax"/> + </complexType> + + <complexType name="DeployableType"> + <sequence> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + <attribute name="composite" type="QName" use="required"/> + <anyAttribute namespace="##other" processContents="lax"/> + </complexType> + + <complexType name="ImportType"> + <sequence> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + <attribute name="namespace" type="string" use="required"/> + <attribute name="location" type="anyURI" use="required"/> + <anyAttribute namespace="##other" processContents="lax"/> + </complexType> + + <complexType name="ExportType"> + <sequence> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + <attribute name="namespace" type="string" use="required"/> + <anyAttribute namespace="##other" processContents="lax"/> + </complexType> +</schema>
\ No newline at end of file |