e982b4ef38
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@917273 13f79535-47bb-0310-9956-ffa450edef68
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Copyright(C) OASIS(R) 2005,2009. All Rights Reserved. OASIS trademark, IPR and other policies apply. -->
|
|
<schema xmlns="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912"
|
|
targetNamespace="http://docs.oasis-open.org/ns/opencsa/sca/200912"
|
|
elementFormDefault="qualified">
|
|
|
|
<include schemaLocation="sca-contribution-1.1-cd04.xsd"/>
|
|
|
|
<!-- Import.java -->
|
|
<element name="import.java" type="sca:JavaImportType"
|
|
substitutionGroup="sca:importBase" />
|
|
<complexType name="JavaImportType">
|
|
<complexContent>
|
|
<extension base="sca:Import">
|
|
<attribute name="package" type="string" use="required"/>
|
|
<attribute name="location" type="anyURI" use="optional"/>
|
|
</extension>
|
|
</complexContent>
|
|
</complexType>
|
|
|
|
<!-- Export.java -->
|
|
<element name="export.java" type="sca:JavaExportType"
|
|
substitutionGroup="sca:exportBase" />
|
|
<complexType name="JavaExportType">
|
|
<complexContent>
|
|
<extension base="sca:Export">
|
|
<attribute name="package" type="string" use="required"/>
|
|
</extension>
|
|
</complexContent>
|
|
</complexType>
|
|
|
|
</schema>
|