diff options
Diffstat (limited to 'branches/sca-java-1.5.2/modules/assembly-xsd/src')
44 files changed, 0 insertions, 2299 deletions
diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema deleted file mode 100644 index 69b2701e30..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema +++ /dev/null @@ -1,18 +0,0 @@ -# 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. -# -tuscany-sca.xsd
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-all.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-all.xsd deleted file mode 100644 index 63e83884e0..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-all.xsd +++ /dev/null @@ -1,34 +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 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"> - - <include schemaLocation="sca.xsd"/> - - <include schemaLocation="sca-binding-ejb.xsd"/> - - <include schemaLocation="sca-implementation-bpel.xsd"/> - <include schemaLocation="sca-implementation-spring.xsd"/> - <include schemaLocation="sca-implementation-ejb.xsd"/> - <include schemaLocation="sca-implementation-jee.xsd"/> - <include schemaLocation="sca-implementation-web.xsd"/> - -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-ejb.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-ejb.xsd deleted file mode 100644 index b6112f9750..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-ejb.xsd +++ /dev/null @@ -1,43 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006, 2007 --> -<schema xmlns="http://www.w3.org/2001/XMLSchema" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - targetNamespace="http://www.osoa.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - <include schemaLocation="sca-core.xsd"/> - - <element name="binding.ejb" type="sca:EJBSessionBeanBinding" - substitutionGroup="sca:binding" /> - - <simpleType name="BeanType"> - <restriction base="string"> - <enumeration value="stateless"/> - <enumeration value="stateful"/> - </restriction> - </simpleType> - - <simpleType name="VersionValue"> - <restriction base="string"> - <enumeration value="EJB2"/> - <enumeration value="EJB3"/> - </restriction> - </simpleType> - - - <complexType name="EJBSessionBeanBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##other" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="homeInterface" type="NCName" use="optional"/> - <attribute name="ejb-link-name" type="string" use="optional"/> - <attribute name="session-type" type="sca:BeanType" use="optional" default="stateless"/> - <attribute name="ejb-version" type="sca:VersionValue" use="optional" default="EJB2"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-jms.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-jms.xsd deleted file mode 100644 index dc8c4c5bd6..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-jms.xsd +++ /dev/null @@ -1,148 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006, 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"/> - - <complexType name="JMSBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <element name="destination" type="sca:Destination" minOccurs="0"/> - <element name="connectionFactory" type="sca:ConnectionFactory" - minOccurs="0"/> - <element name="activationSpec" type="sca:ActivationSpec" - minOccurs="0"/> - <element name="response" type="sca:Response" minOccurs="0"/> - <element name="headers" type="sca:Headers" minOccurs="0"/> - <element name="resourceAdapter" type="sca:ResourceAdapter" - minOccurs="0"/> - <element name="operationProperties" type="sca:OperationProperties" - minOccurs="0" maxOccurs="unbounded"/> - <any namespace="##other" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="correlationScheme" - default="RequestMsgIDToCorrelID"> - <simpleType> - <restriction base="string"> - <enumeration value="RequestMsgIDToCorrelID"/> - <enumeration value="RequestCorrelIDToCorrelID"/> - <enumeration value="None"/> - </restriction> - </simpleType> - </attribute> - - <attribute name="initialContextFactory" type="anyURI"/> - <attribute name="jndiURL" type="anyURI"/> - <attribute name="requestConnection" type="QName"/> - <attribute name="responseConnection" type="QName"/> - <attribute name="operationProperties" type="QName"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> - - <simpleType name="CreateResource"> - <restriction base="string"> - <enumeration value="always"/> - <enumeration value="never"/> - <enumeration value="ifnotexist"/> - </restriction> - </simpleType> - - <complexType name="Destination"> - <sequence> - <element name="property" type="sca:BindingProperty" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="name" type="anyURI" use="required"/> - <attribute name="type" use="optional" default="queue"> - <simpleType> - <restriction base="string"> - <enumeration value="queue"/> - <enumeration value="topic"/> - </restriction> - </simpleType> - </attribute> - <attribute name="create" type="sca:CreateResource" - use="optional" default="ifnotexist"/> - </complexType> - - <complexType name="ConnectionFactory"> - <sequence> - <element name="property" type="sca:BindingProperty" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="name" type="anyURI" use="required"/> - <attribute name="create" type="sca:CreateResource" use="optional" - default="ifnotexist"/> - </complexType> - - <complexType name="ActivationSpec"> - <sequence> - <element name="property" type="sca:BindingProperty" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="name" type="anyURI" use="required"/> - <attribute name="create" type="sca:CreateResource" - use="optional" default="ifnotexist"/> - </complexType> - - <complexType name="Response"> - <sequence> - <element name="destination" type="sca:Destination" minOccurs="0"/> - <element name="connectionFactory" type="sca:ConnectionFactory" - minOccurs="0"/> - <element name="activationSpec" type="sca:ActivationSpec" minOccurs="0"/> - <any namespace="##other" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - </complexType> - - <complexType name="Headers"> - <sequence> - <element name="property" type="sca:BindingProperty" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="JMSType" type="string"/> - <attribute name="JMSCorrelationID" type="string"/> - <attribute name="JMSDeliveryMode" type="string"/> - <attribute name="JMSTimeToLive" type="int"/> - <attribute name="JMSPriority" type="string"/> - </complexType> - - <complexType name="ResourceAdapter"> - <sequence> - <element name="property" type="sca:BindingProperty" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="name" type="string" use="required"/> - </complexType> - - <complexType name="OperationProperties"> - <sequence> - <element name="property" type="sca:BindingProperty" - minOccurs="0" maxOccurs="unbounded"/> - <element name="headers" type="sca:Headers" minOccurs="0"/> - </sequence> - <attribute name="name" type="string" use="required"/> - <attribute name="nativeOperation" type="string"/> - </complexType> - - <element name="binding.jms" type="sca:JMSBinding" - substitutionGroup="sca:binding"/> - - <complexType name="BindingProperty"> - <simpleContent> - <extension base="string"> - <attribute name="name" type="NMTOKEN" use="required"/> - <attribute name="type" type="string" use="optional" default="xs:string"/> - </extension> - </simpleContent> - </complexType> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-sca.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-sca.xsd deleted file mode 100644 index 02703402ef..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-sca.xsd +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<!-- (c) Copyright SCA Collaboration 2006, 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="binding.sca" type="sca:SCABinding"
- substitutionGroup="sca:binding"/>
- <complexType name="SCABinding">
- <complexContent>
- <extension base="sca:Binding">
- <sequence> - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence>
- <anyAttribute namespace="##any" processContents="lax"/>
- </extension>
- </complexContent>
- </complexType> -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-webservice.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-webservice.xsd deleted file mode 100644 index 53e40f74b1..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-binding-webservice.xsd +++ /dev/null @@ -1,36 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006, 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" - xmlns:wsdli="http://www.w3.org/2004/08/wsdl-instance" - xmlns:wsa="http://www.w3.org/2005/08/addressing" - elementFormDefault="qualified"> - - <import namespace="http://www.w3.org/2004/08/wsdl-instance" - schemaLocation="wsdli.xsd" /> - <import namespace="http://www.w3.org/2005/08/addressing" - schemaLocation="ws-addr.xsd" /> - - <include schemaLocation="sca-core.xsd"/> - - <element name="binding.ws" type="sca:WebServiceBinding" - substitutionGroup="sca:binding"/> - <complexType name="WebServiceBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <element name="EndpointReference" - type="wsa:EndpointReferenceType" - minOccurs="0" - maxOccurs="unbounded"/> - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <attribute name="wsdlElement" type="anyURI" use="optional"/> - <attribute ref="wsdli:wsdlLocation" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-contributions.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-contributions.xsd deleted file mode 100644 index 2da2fedb1f..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-contributions.xsd +++ /dev/null @@ -1,65 +0,0 @@ -<?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> - <choice minOccurs="0" maxOccurs="unbounded"> - <element name="deployable" type="sca:DeployableType" minOccurs="0" maxOccurs="unbounded"/> - <element ref="sca:baseImport"/> - <element ref="sca:baseExport"/> - </choice> - <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> - - <element name="baseImport" type="sca:BaseImportType" abstract="true"/> - <complexType name="BaseImportType" abstract="true"> - <sequence> - <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="location" type="anyURI" use="optional"/> - <anyAttribute namespace="##other" processContents="lax"/> - </complexType> - - <element name="import" type="sca:ImportType" substitutionGroup="sca:baseImport"/> - <complexType name="ImportType"> - <complexContent> - <extension base="sca:BaseImportType"> - <attribute name="namespace" type="string" use="required"/> - </extension> - </complexContent> - </complexType> - - <element name="baseExport" type="sca:BaseExportType" abstract="true"/> - <complexType name="BaseExportType" abstract="true"> - <sequence> - <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <anyAttribute namespace="##other" processContents="lax"/> - </complexType> - - <element name="export" type="sca:ExportType" substitutionGroup="sca:baseExport"/> - <complexType name="ExportType"> - <complexContent> - <extension base="sca:BaseExportType"> - <attribute name="namespace" type="string" use="required"/> - </extension> - </complexContent> - </complexType> -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-core.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-core.xsd deleted file mode 100644 index f03d0eab01..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-core.xsd +++ /dev/null @@ -1,348 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006, 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"> - - <element name="componentType" type="sca:ComponentType"/> - <complexType name="ComponentType"> - <sequence> - <choice minOccurs="0" maxOccurs="1"> - <element ref="sca:implementation"/> - <any namespace="##other" processContents="lax"/> - </choice> - <choice minOccurs="0" maxOccurs="unbounded"> - <element name="service" type="sca:ComponentService" /> - <element name="reference" type="sca:ComponentReference"/> - <element name="property" type="sca:Property"/> - </choice> - <!-- - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - --> - </sequence> - <attribute name="constrainingType" type="QName" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <element name="composite" type="sca:Composite"/> - <complexType name="Composite"> - <sequence> - <choice minOccurs="0" maxOccurs="unbounded"> - <element name="include" type="sca:Include"/> - <element name="service" type="sca:Service"/> - <element name="property" type="sca:Property"/> - <element name="component" type="sca:Component"/> - <element name="reference" type="sca:Reference"/> - <element name="wire" type="sca:Wire"/> - <!-- <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> --> - </choice> - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <attribute name="name" type="NCName" use="required"/> - <attribute name="targetNamespace" type="anyURI" use="optional"/> - <attribute name="local" type="boolean" use="optional" default="false"/> - <attribute name="autowire" type="boolean" use="optional" default="false"/> - <attribute name="constrainingType" type="QName" use="optional"/> - <attribute name="requires" type="sca:listOfQNames" use="optional"/> - <attribute name="policySets" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <complexType name="Service"> - <sequence> - <element ref="sca:interface" minOccurs="0" maxOccurs="1" /> - <element name="operation" type="sca:Operation" minOccurs="0" - maxOccurs="unbounded" /> - <choice minOccurs="0" maxOccurs="unbounded"> - <element ref="sca:binding" /> - <any namespace="##other" processContents="lax"/> - </choice> - <element ref="sca:callback" minOccurs="0" maxOccurs="1" /> - <!-- - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded" /> - --> - </sequence> - <attribute name="name" type="NCName" use="required" /> - <attribute name="promote" type="anyURI" use="required" /> - <attribute name="requires" type="sca:listOfQNames" use="optional" /> - <attribute name="policySets" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax" /> - </complexType> - - <element name="interface" type="sca:Interface" abstract="true" /> - <complexType name="Interface" abstract="true"/> - - <complexType name="Reference"> - <sequence> - <element ref="sca:interface" minOccurs="0" maxOccurs="1" /> - <element name="operation" type="sca:Operation" minOccurs="0" - maxOccurs="unbounded" /> - <choice minOccurs="0" maxOccurs="unbounded"> - <element ref="sca:binding" /> - <any namespace="##other" processContents="lax" /> - </choice> - <element ref="sca:callback" minOccurs="0" maxOccurs="1" /> - <!-- - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded" /> - --> - </sequence> - <attribute name="name" type="NCName" use="required" /> - <attribute name="target" type="sca:listOfAnyURIs" use="optional"/> - <attribute name="wiredByImpl" type="boolean" use="optional" default="false"/> - <attribute name="multiplicity" type="sca:Multiplicity" - use="optional" default="1..1" /> - <attribute name="promote" type="sca:listOfAnyURIs" use="required" /> - <attribute name="requires" type="sca:listOfQNames" use="optional" /> - <attribute name="policySets" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax" /> - </complexType> - - <complexType name="SCAPropertyBase" mixed="true"> - <!-- mixed="true" to handle simple type --> - <sequence> - <any namespace="##any" processContents="lax" minOccurs="0" - maxOccurs="1" /> - <!-- NOT an extension point; This xsd:any exists to accept - the element-based or complex type property - i.e. no element-based extension point under "sca:property" --> - </sequence> - </complexType> - - <!-- complex type for sca:property declaration --> - <complexType name="Property" mixed="true"> - <complexContent> - <extension base="sca:SCAPropertyBase"> - <!-- extension defines the place to hold default value --> - <attribute name="name" type="NCName" use="required"/> - <attribute name="type" type="QName" use="optional"/> - <attribute name="element" type="QName" use="optional"/> - <attribute name="many" type="boolean" default="false" - use="optional"/> - <attribute name="mustSupply" type="boolean" default="false" - use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - <!-- an extension point ; attribute-based only --> - </extension> - </complexContent> - </complexType> - - <complexType name="PropertyValue" mixed="true"> - <complexContent> - <extension base="sca:SCAPropertyBase"> - <attribute name="name" type="NCName" use="required"/> - <attribute name="type" type="QName" use="optional"/> - <attribute name="element" type="QName" use="optional"/> - <attribute name="many" type="boolean" default="false" - use="optional"/> - <attribute name="source" type="string" use="optional"/> - <attribute name="file" type="anyURI" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - <!-- an extension point ; attribute-based only --> - </extension> - </complexContent> - </complexType> - - <element name="binding" type="sca:Binding" abstract="true"/> - <complexType name="Binding" abstract="true"> - <sequence> - <element name="operation" type="sca:Operation" minOccurs="0" - maxOccurs="unbounded" /> - </sequence> - <attribute name="uri" type="anyURI" use="optional"/> - <attribute name="name" type="QName" use="optional"/> - <attribute name="requires" type="sca:listOfQNames" use="optional"/> - <attribute name="policySets" type="sca:listOfQNames" use="optional"/> - </complexType> - - <element name="bindingType" type="sca:BindingType"/> - <complexType name="BindingType"> - <sequence minOccurs="0" maxOccurs="unbounded"> - <any namespace="##other" processContents="lax" /> - </sequence> - <attribute name="type" type="QName" use="required"/> - <attribute name="alwaysProvides" type="sca:listOfQNames" use="optional"/> - <attribute name="mayProvide" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <element name="callback" type="sca:Callback"/> - <complexType name="Callback"> - <choice minOccurs="0" maxOccurs="unbounded"> - <element ref="sca:binding"/> - <any namespace="##other" processContents="lax"/> - </choice> - <attribute name="requires" type="sca:listOfQNames" use="optional"/> - <attribute name="policySets" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <complexType name="Component"> - <sequence> - <choice minOccurs="0" maxOccurs="1"> - <element ref="sca:implementation"/> - <any namespace="##other" processContents="lax"/> - </choice> - <choice minOccurs="0" maxOccurs="unbounded"> - <element name="service" type="sca:ComponentService"/> - <element name="reference" type="sca:ComponentReference"/> - <element name="property" type="sca:PropertyValue" /> - </choice> - <!-- - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - --> - </sequence> - <attribute name="name" type="NCName" use="required"/> - <attribute name="autowire" type="boolean" use="optional" default="false"/> - <attribute name="constrainingType" type="QName" use="optional"/> - <attribute name="requires" type="sca:listOfQNames" use="optional"/> - <attribute name="policySets" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <complexType name="ComponentService"> - <sequence> - <element ref="sca:interface" minOccurs="0" maxOccurs="1"/> - <element name="operation" type="sca:Operation" minOccurs="0" - maxOccurs="unbounded" /> - <choice minOccurs="0" maxOccurs="unbounded"> - <element ref="sca:binding" /> - <any namespace="##other" processContents="lax"/> - </choice> - <element ref="sca:callback" minOccurs="0" maxOccurs="1"/> - <!-- - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - --> - </sequence> - <attribute name="name" type="NCName" use="required"/> - <attribute name="requires" type="sca:listOfQNames" - use="optional"/> - <attribute name="policySets" type="sca:listOfQNames" - use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <complexType name="ComponentReference"> - <sequence> - <element ref="sca:interface" minOccurs="0" maxOccurs="1" /> - <element name="operation" type="sca:Operation" minOccurs="0" - maxOccurs="unbounded" /> - <choice minOccurs="0" maxOccurs="unbounded"> - <element ref="sca:binding" /> - <any namespace="##other" processContents="lax" /> - </choice> - <element ref="sca:callback" minOccurs="0" maxOccurs="1" /> - <!-- - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded" /> - --> - </sequence> - <attribute name="name" type="NCName" use="required" /> - <attribute name="target" type="sca:listOfAnyURIs" use="optional"/> - <attribute name="multiplicity" type="sca:Multiplicity" - use="optional" default="1..1" /> - <attribute name="requires" type="sca:listOfQNames" use="optional"/> - <attribute name="policySets" type="sca:listOfQNames" - use="optional"/> - <anyAttribute namespace="##any" processContents="lax" /> - </complexType> - - <element name="implementation" type="sca:Implementation" - abstract="true" /> - <complexType name="Implementation" abstract="true"> - <attribute name="requires" type="sca:listOfQNames" use="optional"/> - <attribute name="policySets" type="sca:listOfQNames" use="optional"/> - </complexType> - - <element name="implementationType" type="sca:ImplementationType"/> - <complexType name="ImplementationType"> - <sequence minOccurs="0" maxOccurs="unbounded"> - <any namespace="##other" processContents="lax" /> - </sequence> - <attribute name="type" type="QName" use="required"/> - <attribute name="alwaysProvides" type="sca:listOfQNames" use="optional"/> - <attribute name="mayProvide" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <complexType name="Wire"> - <sequence> - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <attribute name="source" type="anyURI" use="required"/> - <attribute name="target" type="anyURI" use="required"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <element name="include" type="sca:Include"/> - <complexType name="Include"> - <attribute name="name" type="QName"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <complexType name="Operation"> - <attribute name="name" type="NCName" use="required"/> - <attribute name="requires" type="sca:listOfQNames" use="optional"/> - <attribute name="policySets" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <element name="constrainingType" type="sca:ConstrainingType"/> - <complexType name="ConstrainingType"> - <sequence> - <choice minOccurs="0" maxOccurs="unbounded"> - <element name="service" type="sca:ComponentService"/> - <element name="reference" type="sca:ComponentReference"/> - <element name="property" type="sca:Property" /> - </choice> - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <attribute name="name" type="NCName" use="required"/> - <attribute name="targetNamespace" type="anyURI"/> - <attribute name="requires" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - - <simpleType name="Multiplicity"> - <restriction base="string"> - <enumeration value="0..1"/> - <enumeration value="1..1"/> - <enumeration value="0..n"/> - <enumeration value="1..n"/> - </restriction> - </simpleType> - - <simpleType name="OverrideOptions"> - <restriction base="string"> - <enumeration value="no"/> - <enumeration value="may"/> - <enumeration value="must"/> - </restriction> - </simpleType> - - <!-- Global attribute definition for @requires to permit use of intents - within WSDL documents --> - <attribute name="requires" type="sca:listOfQNames"/> - - <!-- Global attribute defintion for @endsConversation to mark operations - as ending a conversation --> - <attribute name="endsConversation" type="boolean" default="false"/> - - <simpleType name="listOfQNames"> - <list itemType="QName"/> - </simpleType> - - <simpleType name="listOfAnyURIs"> - <list itemType="anyURI"/> - </simpleType> - -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-definitions.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-definitions.xsd deleted file mode 100644 index 0249882a92..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-definitions.xsd +++ /dev/null @@ -1,25 +0,0 @@ -<?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"/> - <include schemaLocation="sca-policy.xsd"/> - - <element name="definitions"> - <complexType> - <choice minOccurs="0" maxOccurs="unbounded"> - <element ref="sca:intent"/> - <element ref="sca:policySet"/> - <element ref="sca:binding"/> - <element ref="sca:bindingType"/> - <element ref="sca:implementationType"/> - <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </choice> - <attribute name="targetNamespace" type="anyURI" use="optional"/> - </complexType> - </element> - -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-bpel.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-bpel.xsd deleted file mode 100644 index 87b443fb36..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-bpel.xsd +++ /dev/null @@ -1,43 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006 --> -<xsd:schema xmlns="http://www.osoa.org/xmlns/sca/1.0" - targetNamespace="http://www.osoa.org/xmlns/sca/1.0" - xmlns:xsd="http://www.w3.org/2001/XMLSchema" - elementFormDefault="qualified"> - - <xsd:include schemaLocation="sca-core.xsd" /> - - <xsd:element name="implementation.bpel" type="BpelImplementation" - substitutionGroup="implementation" /> - - <xsd:complexType name="BpelImplementation"> - <xsd:complexContent> - <xsd:extension base="Implementation"> - <xsd:sequence> - <xsd:any namespace="##other" processContents="lax" - minOccurs="0" maxOccurs="unbounded" /> - </xsd:sequence> - <xsd:attribute name="process" type="xsd:QName" use="required" /> - <xsd:anyAttribute namespace="##any" processContents="lax" /> - </xsd:extension> - </xsd:complexContent> - </xsd:complexType> - - <xsd:element name="interface.partnerLinkType" type="BpelPartnerLinkType" - substitutionGroup="interface" /> - - <xsd:complexType name="BpelPartnerLinkType"> - <xsd:complexContent> - <xsd:extension base="Interface"> - <xsd:sequence> - <xsd:any namespace="##other" processContents="lax" - minOccurs="0" maxOccurs="unbounded" /> - </xsd:sequence> - <xsd:attribute name="type" type="xsd:QName" use="required" /> - <xsd:attribute name="serviceRole" type="xsd:NCName" use="optional" /> - <xsd:anyAttribute namespace="##any" processContents="lax" /> - </xsd:extension> - </xsd:complexContent> - </xsd:complexType> - -</xsd:schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-composite.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-composite.xsd deleted file mode 100644 index 99669bc672..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-composite.xsd +++ /dev/null @@ -1,23 +0,0 @@ -<?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.composite" type="sca:SCAImplementation" - substitutionGroup="sca:implementation"/> - <complexType name="SCAImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##other" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <attribute name="name" type="QName" use="required"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-cpp.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-cpp.xsd deleted file mode 100644 index 6f1cf14a4b..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-cpp.xsd +++ /dev/null @@ -1,53 +0,0 @@ -<?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" - xmlns:sdo="commonj.sdo/XML" - elementFormDefault="qualified"> - - <include schemaLocation="sca-core.xsd"/> - - <element name="implementation.cpp" type="sca:CPPImplementation" substitutionGroup="sca:implementation" /> - <complexType name="CPPImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <element name="method" type="sca:CPPImplementationMethod" minOccurs="0" maxOccurs="unbounded" /> - <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="library" type="NCName" use="required"/> - <attribute name="header" type="NCName" use="required"/> - <attribute name="path" type="NCName" use="optional"/> - <attribute name="class" type="Name" use="optional"/> - <attribute name="scope" type="sca:CPPImplementationScope" use="optional"/> - <attribute name="eagerInit" type="boolean" use="optional"/> - <attribute name="allowsPassByReference" type="boolean" use="optional"/> - <attribute name="conversationMaxAge" type="string" use="optional"/> - <attribute name="conversationMaxIdle" type="string" use="optional"/> - <attribute name="conversationSinglePrincipal" type="boolean" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> - - <simpleType name="CPPImplementationScope"> - <restriction base="string"> - <enumeration value="stateless"/> - <enumeration value="composite"/> - <enumeration value="request"/> - <enumeration value="converstion"/> - </restriction> - </simpleType> - - <complexType name="CPPImplementationMethod"> - <complexContent> - <attribute name="name" type="NCName" use="required"/> - <attribute name="allowsPassByReference" type="boolean" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexContent> - </complexType> - -</schema> - - diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-ejb.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-ejb.xsd deleted file mode 100644 index a7e781b18f..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-ejb.xsd +++ /dev/null @@ -1,25 +0,0 @@ -<?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.ejb" type="sca:EJBImplementation"
- substitutionGroup="sca:implementation"/>
- <complexType name="EJBImplementation">
- <complexContent>
- <extension base="sca:Implementation">
- <sequence>
- <any namespace="##other" processContents="lax"
- minOccurs="0" maxOccurs="unbounded"/>
- </sequence>
- <!-- we might want to make this refer to the JEE ejb-link type -->
- <attribute name="ejb-link" type="token" use="required"/>
- <anyAttribute namespace="##any" processContents="lax"/>
- </extension>
- </complexContent>
- </complexType>
-</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-java.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-java.xsd deleted file mode 100644 index f9d8171b8e..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-java.xsd +++ /dev/null @@ -1,24 +0,0 @@ -<?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.java" type="sca:JavaImplementation" - substitutionGroup="sca:implementation"/> - <complexType name="JavaImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##other" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="class" type="NCName" use="required"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-jee.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-jee.xsd deleted file mode 100644 index 83e6bb75bf..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-jee.xsd +++ /dev/null @@ -1,23 +0,0 @@ -<?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 diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-spring.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-spring.xsd deleted file mode 100644 index 1cf9fb3ea9..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-spring.xsd +++ /dev/null @@ -1,24 +0,0 @@ -<?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.spring" type="sca:SpringImplementation" - substitutionGroup="sca:implementation"/> - <complexType name="SpringImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##other" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="location" type="anyURI" use="required"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-web.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-web.xsd deleted file mode 100644 index a1adf10fd9..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-implementation-web.xsd +++ /dev/null @@ -1,24 +0,0 @@ -<?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.web" type="sca:WebImplementation"
- substitutionGroup="sca:implementation"/>
- <complexType name="WebImplementation">
- <complexContent>
- <extension base="sca:Implementation">
- <sequence>
- <any namespace="##other" processContents="lax"
- minOccurs="0" maxOccurs="unbounded"/>
- </sequence>
- <attribute name="web-uri" type="string" use="required"/>
- <anyAttribute namespace="##any" processContents="lax"/>
- </extension>
- </complexContent>
- </complexType>
-</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-interface-cpp.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-interface-cpp.xsd deleted file mode 100644 index 44f14e5ed5..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-interface-cpp.xsd +++ /dev/null @@ -1,40 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006 --> -<schema xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://www.commonj.org/xmlns/sca/1.0/" - xmlns:sca="http://www.commonj.org/xmlns/sca/1.0/" - xmlns:sdo="commonj.sdo/XML" - elementFormDefault="qualified"> - - <include schemaLocation="sca-core.xsd"/> - - <element name="interface.cpp" type="sca:CPPInterface" substitutionGroup="sca:interface"/> - - <complexType name="CPPInterface"> - <complexContent> - <extension base="sca:Interface"> - <sequence> - <element name="method" type="sca:CPPMethod" minOccurs="0" maxOccurs="unbounded" /> - <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="header" type="NCName" use="required"/> - <attribute name="class" type="Name" use="required"/> - <attribute name="callbackHeader" type="NCName" use="optional"/> - <attribute name="callbackClass" type="Name" use="optional"/> - <attribute name="remotable" type="boolean" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> - - <complexType name="CPPMethod"> - <complexContent> - <attribute name="name" type="NCName" use="required"/> - <attribute name="oneWay" type="boolean" use="optional"/> - <attribute name="endConversation" type="boolean" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexContent> - </complexType> - -</schema> - diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-interface-java.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-interface-java.xsd deleted file mode 100644 index 81f939bdb4..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-interface-java.xsd +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006, 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="interface.java" type="sca:JavaInterface" substitutionGroup="sca:interface"/> - <complexType name="JavaInterface"> - <complexContent> - <extension base="sca:Interface"> - <sequence> - <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="interface" type="NCName" use="required"/> - <attribute name="callbackInterface" type="NCName" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-interface-wsdl.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-interface-wsdl.xsd deleted file mode 100644 index c1fdfd8f3c..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-interface-wsdl.xsd +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006, 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="interface.wsdl" type="sca:WSDLPortType" substitutionGroup="sca:interface"/> - <complexType name="WSDLPortType"> - <complexContent> - <extension base="sca:Interface"> - <sequence> - <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="interface" type="anyURI" use="required"/> - <attribute name="callbackInterface" type="anyURI" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-policy.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-policy.xsd deleted file mode 100644 index 2c4875f36c..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca-policy.xsd +++ /dev/null @@ -1,77 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006, 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" - xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" - elementFormDefault="qualified"> - - <include schemaLocation="sca-core.xsd"/> - - <element name="intent" type="sca:Intent"/> - <complexType name="Intent"> - <sequence> - <element name="description" type="string" minOccurs="0" maxOccurs="1" /> - <any namespace="##other" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="name" type="QName" use="required"/> - <attribute name="constrains" type="sca:listOfQNames" use="optional"/> - <attribute name="requires" type="sca:listOfQNames" use="optional"/> - <attribute name="excludes" type="sca:listOfQNames" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <element name="policySet" type="sca:PolicySet"/> - <complexType name="PolicySet"> - <choice minOccurs="0" maxOccurs="unbounded"> - <element name="policySetReference" type="sca:PolicySetReference"/> - <element name="intentMap" type="sca:IntentMap"/> - <any namespace="##other" processContents="lax"/> - </choice> - <attribute name="name" type="QName" use="required"/> - <attribute name="provides" type="sca:listOfQNames" use="optional"/> - <attribute name="appliesTo" type="string" use="required"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <complexType name="PolicySetReference"> - <attribute name="name" type="QName" use="required"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <complexType name="IntentMap"> - <choice minOccurs="1" maxOccurs="unbounded"> - <element name="qualifier" type="sca:Qualifier"/> - <any namespace="##other" processContents="lax"/> - </choice> - <attribute name="provides" type="QName" use="required"/> - <attribute name="default" type="string" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <complexType name="Qualifier"> - <choice minOccurs="1" maxOccurs="unbounded"> - <element name="intentMap" type="sca:IntentMap"/> - <any namespace="##other" processContents="lax"/> - </choice> - <attribute name="name" type="string" use="required"/> - <anyAttribute namespace="##any" processContents="lax"/> - </complexType> - - <element name="allow" type="sca:Allow"/> - <complexType name="Allow"> - <attribute name="roles" type="string" use="required"/> - </complexType> - - <element name="permitAll" type="sca:PermitAll"/> - <complexType name="PermitAll"/> - - <element name="denyAll" type="sca:DenyAll"/> - <complexType name="DenyAll"/> - - <element name="runAs" type="sca:RunAs"/> - <complexType name="RunAs"> - <attribute name="role" type="string" use="required"/> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca.xsd deleted file mode 100644 index b4eae28bfe..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/sca.xsd +++ /dev/null @@ -1,25 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- (c) Copyright SCA Collaboration 2006, 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"> - - <include schemaLocation="sca-core.xsd"/> - - <include schemaLocation="sca-interface-java.xsd"/> - <include schemaLocation="sca-interface-wsdl.xsd"/> - - <include schemaLocation="sca-implementation-java.xsd"/> - <include schemaLocation="sca-implementation-composite.xsd"/> - - <include schemaLocation="sca-binding-webservice.xsd"/> - <include schemaLocation="sca-binding-jms.xsd"/> - <include schemaLocation="sca-binding-sca.xsd"/> - - <include schemaLocation="sca-contributions.xsd"/> - <include schemaLocation="tuscany-sca-contributions.xsd"/> - - <include schemaLocation="sca-definitions.xsd"/> - <include schemaLocation="sca-policy.xsd"/> - -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-core.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-core.xsd deleted file mode 100644 index 325c0c8a59..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-core.xsd +++ /dev/null @@ -1,37 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <!-- wire formats --> - <element name="wireFormat" type="t:WireFormat" abstract="true"/> - - <complexType name="WireFormat" abstract="true"/> - - <!-- operation selectors --> - <element name="operationSelector" type="t:OperationSelector" abstract="true"/> - - <complexType name="OperationSelector" abstract="true"/> - -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-atom.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-atom.xsd deleted file mode 100644 index d400810835..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-atom.xsd +++ /dev/null @@ -1,42 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="binding.atom" type="t:AtomBinding"/> - - <complexType name="AtomBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <attribute name="title" type="string" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-corba.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-corba.xsd deleted file mode 100644 index 0baa364f42..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-corba.xsd +++ /dev/null @@ -1,43 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="binding.corba" type="t:CorbaBinding"/> - - <complexType name="CorbaBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="host" type="string" use="required"/> - <attribute name="port" type="string" use="optional"/> - <attribute name="id" type="string" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-dwr.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-dwr.xsd deleted file mode 100644 index 788571de7b..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-dwr.xsd +++ /dev/null @@ -1,41 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="binding.dwr" type="t:DWRBinding"/> - - <complexType name="DWRBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-gdata.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-gdata.xsd deleted file mode 100644 index 2096a014aa..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-gdata.xsd +++ /dev/null @@ -1,43 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="binding.gdata" type="t:GDataBinding"/> - - <complexType name="GDataBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="serviceType" type="string" use="required"/> - <attribute name="username" type="string" use="optional"/> - <attribute name="password" type="string" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-http.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-http.xsd deleted file mode 100644 index b5a0d136be..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-http.xsd +++ /dev/null @@ -1,43 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <include schemaLocation="tuscany-core.xsd"/> - - <element name="binding.http" type="t:HTTPBinding"/> - - <complexType name="HTTPBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jms.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jms.xsd deleted file mode 100644 index e5530105e4..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jms.xsd +++ /dev/null @@ -1,132 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-binding-jms.xsd"/> - - <include schemaLocation="tuscany-core.xsd"/> - - <!-- these schema types are not actually used at the moment as we rely on - any elements in the underlying JMS binding schema to pull in wireFormat - and operationSelection elements. However it's useful to keep track of - what we expect the shape of these elements to be --> - - - <!-- wire formats --> - - <complexType name="WireFormatJMSDefaultType"> - <complexContent> - <extension base="t:WireFormat"> - <attribute name="sendFormat" default="bytes"> - <simpleType> - <restriction base="string"> - <enumeration value="text"/> - <enumeration value="bytes"/> - </restriction> - </simpleType> - </attribute> - </extension> - </complexContent> - </complexType> - <element name="wireFormat.jmsdefault" - type="t:WireFormatJMSDefaultType" - substitutionGroup="t:wireFormat"/> - - <complexType name="WireFormatJMSTextType"> - <complexContent> - <extension base="t:WireFormat"/> - </complexContent> - </complexType> - <element name="wireFormat.jmsText" - type="t:WireFormatJMSTextType" - substitutionGroup="t:wireFormat"/> - - <complexType name="WireFormatJMSTextXMLType"> - <complexContent> - <extension base="t:WireFormat"/> - </complexContent> - </complexType> - <element name="wireFormat.jmsTextXML" - type="t:WireFormatJMSTextXMLType" - substitutionGroup="t:wireFormat"/> - - <complexType name="WireFormatJMSBytesType"> - <complexContent> - <extension base="t:WireFormat"/> - </complexContent> - </complexType> - <element name="wireFormat.jmsBytes" - type="t:WireFormatJMSBytesType" - substitutionGroup="t:wireFormat"/> - - <complexType name="WireFormatJMSBytesXMLType"> - <complexContent> - <extension base="t:WireFormat"/> - </complexContent> - </complexType> - <element name="wireFormat.jmsBytesXML" - type="t:WireFormatJMSBytesXMLType" - substitutionGroup="t:wireFormat"/> - - <complexType name="WireFormatJMSObjectType"> - <complexContent> - <extension base="t:WireFormat"> - <attribute name="wrapSingle" default="false"> - <simpleType> - <restriction base="string"> - <enumeration value="true"/> - <enumeration value="false"/> - </restriction> - </simpleType> - </attribute> - </extension> - </complexContent> - </complexType> - <element name="wireFormat.jmsObject" - type="t:WireFormatJMSObjectType" - substitutionGroup="t:wireFormat"/> - - - <!-- operation selectors --> - <complexType name="OperationSelectorJMSDefaultType"> - <complexContent> - <extension base="t:OperationSelector"/> - </complexContent> - </complexType> - <element name="operationSelector.jmsdefault" - type="t:OperationSelectorJMSDefaultType" - substitutionGroup="t:operationSelector"/> - - <complexType name="OperationSelectorJMSUserPropType"> - <complexContent> - <extension base="t:OperationSelector"> - <attribute name="propertyName" type="string"/> - </extension> - </complexContent> - </complexType> - <element name="operationSelector.jmsUserProp" - type="t:OperationSelectorJMSUserPropType" - substitutionGroup="t:operationSelector"/> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jsonrpc.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jsonrpc.xsd deleted file mode 100644 index bacfdda781..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-jsonrpc.xsd +++ /dev/null @@ -1,41 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="binding.jsonrpc" type="t:JSONRPCBinding"/> - - <complexType name="JSONRPCBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-notification.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-notification.xsd deleted file mode 100644 index 6d5468b2f9..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-notification.xsd +++ /dev/null @@ -1,42 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="binding.notification" type="t:NotificationBinding"/> - - <complexType name="NotificationBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <attribute name="ntm" type="anyURI" use="optional"/> - <attribute name="notificationType" type="anyURI" use="optional"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-rmi.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-rmi.xsd deleted file mode 100644 index dbef8fbed6..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-rmi.xsd +++ /dev/null @@ -1,43 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="binding.rmi" type="t:RMIBinding"/> - - <complexType name="RMIBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <attribute name="host" type="anyURI" use="optional"/> - <attribute name="port" type="int" use="optional"/> - <attribute name="serviceName" type="anyURI" use="optional"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-rss.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-rss.xsd deleted file mode 100644 index 5af65aced2..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-binding-rss.xsd +++ /dev/null @@ -1,42 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="binding.rss" type="t:RSSBinding"/> - - <complexType name="RSSBinding"> - <complexContent> - <extension base="sca:Binding"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" minOccurs="0" - maxOccurs="unbounded"/> - </sequence> - <attribute name="title" type="string" use="optional"/> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-contributions.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-contributions.xsd deleted file mode 100644 index 20385e7f2c..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-contributions.xsd +++ /dev/null @@ -1,62 +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 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-contributions.xsd"/>
-
- <element name="import.resource" type="sca:ImportResourceType" substitutionGroup="sca:baseImport"/>
- <complexType name="ImportResourceType">
- <complexContent>
- <extension base="sca:BaseImportType">
- <attribute name="uri" type="anyURI" use="required"/>
- </extension>
- </complexContent>
- </complexType>
-
- <element name="export.resource" type="sca:ExportResourceType" substitutionGroup="sca:baseExport"/>
- <complexType name="ExportResourceType">
- <complexContent>
- <extension base="sca:BaseExportType">
- <attribute name="uri" type="anyURI" use="required"/>
- </extension>
- </complexContent>
- </complexType>
-
- <element name="import.java" type="sca:ImportJavaType" substitutionGroup="sca:baseImport"/>
- <complexType name="ImportJavaType">
- <complexContent>
- <extension base="sca:BaseImportType">
- <attribute name="package" type="string" use="required"/>
- </extension>
- </complexContent>
- </complexType>
-
- <element name="export.java" type="sca:ExportJavaType" substitutionGroup="sca:baseExport"/>
- <complexType name="ExportJavaType">
- <complexContent>
- <extension base="sca:BaseExportType">
- <attribute name="package" type="string" use="required"/>
- </extension>
- </complexContent>
- </complexType>
-</schema>
diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-node.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-node.xsd deleted file mode 100644 index 1b5c8aece2..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-node.xsd +++ /dev/null @@ -1,43 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="implementation.node" type="t:NodeImplementation"/> - - <complexType name="NodeImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="uri" type="string" use="required"/> - <attribute name="composite" type="QName" use="required"/> - </extension> - </complexContent> - </complexType> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-notification.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-notification.xsd deleted file mode 100644 index f8d437310e..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-notification.xsd +++ /dev/null @@ -1,42 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="implementation.notification" type="t:NotificationImplementation"/> - - <complexType name="NotificationImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="name" type="NCName" use="required"/> - </extension> - </complexContent> - </complexType> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-osgi.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-osgi.xsd deleted file mode 100644 index f8ece54a07..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-osgi.xsd +++ /dev/null @@ -1,43 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="implementation.osgi" type="t:OSGiImplementation"/> - - <!-- TODO Declare the proper attributes and elements --> - <complexType name="OSGiImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##any" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <anyAttribute namespace="##any" processContents="lax"/> - </extension> - </complexContent> - </complexType> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-resource.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-resource.xsd deleted file mode 100644 index dd596821ea..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-resource.xsd +++ /dev/null @@ -1,42 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="implementation.resource" type="t:ResourceImplementation"/> - - <complexType name="ResourceImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="location" type="anyURI" use="required"/> - </extension> - </complexContent> - </complexType> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-script.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-script.xsd deleted file mode 100644 index e1723d65f0..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-script.xsd +++ /dev/null @@ -1,43 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="implementation.script" type="t:ScriptImplementation"/> - - <complexType name="ScriptImplementation"> - <complexContent mixed="true"> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="script" type="anyURI" use="optional"/> - <attribute name="language" type="NCName" use="optional"/> - </extension> - </complexContent> - </complexType> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-widget.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-widget.xsd deleted file mode 100644 index 0c0998595f..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-widget.xsd +++ /dev/null @@ -1,42 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="implementation.widget" type="t:WidgetImplementation"/> - - <complexType name="WidgetImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="location" type="anyURI" use="required"/> - </extension> - </complexContent> - </complexType> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-xquery.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-xquery.xsd deleted file mode 100644 index cdabb697aa..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-xquery.xsd +++ /dev/null @@ -1,42 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" - xmlns:sca="http://www.osoa.org/xmlns/sca/1.0" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - - <element name="implementation.xquery" type="t:XQueryImplementation"/> - - <complexType name="XQueryImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - </sequence> - <attribute name="location" type="anyURI" use="required"/> - </extension> - </complexContent> - </complexType> - -</schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca.xsd deleted file mode 100644 index ba1d8811cc..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/tuscany-sca.xsd +++ /dev/null @@ -1,53 +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 xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0"> - - <import namespace="http://www.w3.org/2004/08/wsdl-instance" schemaLocation="wsdli.xsd"/> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-all.xsd"/> - <import namespace="http://data.tuscany.apache.org/xmlns/sca/1.0" schemaLocation="tuscany-sca-data-helper.xsd"/> - - <include schemaLocation="tuscany-sca-binding-atom.xsd"/> - <include schemaLocation="tuscany-sca-binding-corba.xsd"/> - <include schemaLocation="tuscany-sca-binding-dwr.xsd"/> - <include schemaLocation="tuscany-sca-binding-gdata.xsd"/> - <include schemaLocation="tuscany-sca-binding-http.xsd"/> - <include schemaLocation="tuscany-sca-binding-jsonrpc.xsd"/> - <include schemaLocation="tuscany-sca-binding-jms.xsd"/> - <include schemaLocation="tuscany-sca-binding-notification.xsd"/> - <include schemaLocation="tuscany-sca-binding-rmi.xsd"/> - <include schemaLocation="tuscany-sca-binding-rss.xsd"/> - - <!-- - <include schemaLocation="tuscany-sca-implementation-das.xsd"/> - <include schemaLocation="tuscany-sca-implementation-data-xml.xsd"/> - --> - <include schemaLocation="tuscany-sca-implementation-node.xsd"/> - <include schemaLocation="tuscany-sca-implementation-notification.xsd"/> - <include schemaLocation="tuscany-sca-implementation-osgi.xsd"/> - <include schemaLocation="tuscany-sca-implementation-resource.xsd"/> - <include schemaLocation="tuscany-sca-implementation-script.xsd"/> - <include schemaLocation="tuscany-sca-implementation-widget.xsd"/> - <include schemaLocation="tuscany-sca-implementation-xquery.xsd"/> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="tuscany-sca-contributions.xsd"/> - -</schema>
\ No newline at end of file diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/ws-addr.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/ws-addr.xsd deleted file mode 100644 index 47362edbe2..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/ws-addr.xsd +++ /dev/null @@ -1,137 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- - W3C XML Schema defined in the Web Services Addressing 1.0 specification - http://www.w3.org/TR/ws-addr-core - - Copyright © 2005 World Wide Web Consortium, - - (Massachusetts Institute of Technology, European Research Consortium for - Informatics and Mathematics, Keio University). All Rights Reserved. This - work is distributed under the W3C® Software License [1] in the hope that - it will be useful, but WITHOUT ANY WARRANTY; without even the implied - warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 - - $Id: ws-addr.xsd,v 1.2 2008/07/23 13:38:16 plehegar Exp $ ---> -<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.w3.org/2005/08/addressing" targetNamespace="http://www.w3.org/2005/08/addressing" blockDefault="#all" elementFormDefault="qualified" finalDefault="" attributeFormDefault="unqualified"> - - <!-- Constructs from the WS-Addressing Core --> - - <xs:element name="EndpointReference" type="tns:EndpointReferenceType"/> - <xs:complexType name="EndpointReferenceType" mixed="false"> - <xs:sequence> - <xs:element name="Address" type="tns:AttributedURIType"/> - <xs:element ref="tns:ReferenceParameters" minOccurs="0"/> - <xs:element ref="tns:Metadata" minOccurs="0"/> - <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </xs:sequence> - <xs:anyAttribute namespace="##other" processContents="lax"/> - </xs:complexType> - - <xs:element name="ReferenceParameters" type="tns:ReferenceParametersType"/> - <xs:complexType name="ReferenceParametersType" mixed="false"> - <xs:sequence> - <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </xs:sequence> - <xs:anyAttribute namespace="##other" processContents="lax"/> - </xs:complexType> - - <xs:element name="Metadata" type="tns:MetadataType"/> - <xs:complexType name="MetadataType" mixed="false"> - <xs:sequence> - <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> - </xs:sequence> - <xs:anyAttribute namespace="##other" processContents="lax"/> - </xs:complexType> - - <xs:element name="MessageID" type="tns:AttributedURIType"/> - <xs:element name="RelatesTo" type="tns:RelatesToType"/> - <xs:complexType name="RelatesToType" mixed="false"> - <xs:simpleContent> - <xs:extension base="xs:anyURI"> - <xs:attribute name="RelationshipType" type="tns:RelationshipTypeOpenEnum" use="optional" default="http://www.w3.org/2005/08/addressing/reply"/> - <xs:anyAttribute namespace="##other" processContents="lax"/> - </xs:extension> - </xs:simpleContent> - </xs:complexType> - - <xs:simpleType name="RelationshipTypeOpenEnum"> - <xs:union memberTypes="tns:RelationshipType xs:anyURI"/> - </xs:simpleType> - - <xs:simpleType name="RelationshipType"> - <xs:restriction base="xs:anyURI"> - <xs:enumeration value="http://www.w3.org/2005/08/addressing/reply"/> - </xs:restriction> - </xs:simpleType> - - <xs:element name="ReplyTo" type="tns:EndpointReferenceType"/> - <xs:element name="From" type="tns:EndpointReferenceType"/> - <xs:element name="FaultTo" type="tns:EndpointReferenceType"/> - <xs:element name="To" type="tns:AttributedURIType"/> - <xs:element name="Action" type="tns:AttributedURIType"/> - - <xs:complexType name="AttributedURIType" mixed="false"> - <xs:simpleContent> - <xs:extension base="xs:anyURI"> - <xs:anyAttribute namespace="##other" processContents="lax"/> - </xs:extension> - </xs:simpleContent> - </xs:complexType> - - <!-- Constructs from the WS-Addressing SOAP binding --> - - <xs:attribute name="IsReferenceParameter" type="xs:boolean"/> - - <xs:simpleType name="FaultCodesOpenEnumType"> - <xs:union memberTypes="tns:FaultCodesType xs:QName"/> - </xs:simpleType> - - <xs:simpleType name="FaultCodesType"> - <xs:restriction base="xs:QName"> - <xs:enumeration value="tns:InvalidAddressingHeader"/> - <xs:enumeration value="tns:InvalidAddress"/> - <xs:enumeration value="tns:InvalidEPR"/> - <xs:enumeration value="tns:InvalidCardinality"/> - <xs:enumeration value="tns:MissingAddressInEPR"/> - <xs:enumeration value="tns:DuplicateMessageID"/> - <xs:enumeration value="tns:ActionMismatch"/> - <xs:enumeration value="tns:MessageAddressingHeaderRequired"/> - <xs:enumeration value="tns:DestinationUnreachable"/> - <xs:enumeration value="tns:ActionNotSupported"/> - <xs:enumeration value="tns:EndpointUnavailable"/> - </xs:restriction> - </xs:simpleType> - - <xs:element name="RetryAfter" type="tns:AttributedUnsignedLongType"/> - <xs:complexType name="AttributedUnsignedLongType" mixed="false"> - <xs:simpleContent> - <xs:extension base="xs:unsignedLong"> - <xs:anyAttribute namespace="##other" processContents="lax"/> - </xs:extension> - </xs:simpleContent> - </xs:complexType> - - <xs:element name="ProblemHeaderQName" type="tns:AttributedQNameType"/> - <xs:complexType name="AttributedQNameType" mixed="false"> - <xs:simpleContent> - <xs:extension base="xs:QName"> - <xs:anyAttribute namespace="##other" processContents="lax"/> - </xs:extension> - </xs:simpleContent> - </xs:complexType> - - <xs:element name="ProblemIRI" type="tns:AttributedURIType"/> - - <xs:element name="ProblemAction" type="tns:ProblemActionType"/> - <xs:complexType name="ProblemActionType" mixed="false"> - <xs:sequence> - <xs:element ref="tns:Action" minOccurs="0"/> - <xs:element name="SoapAction" minOccurs="0" type="xs:anyURI"/> - </xs:sequence> - <xs:anyAttribute namespace="##other" processContents="lax"/> - </xs:complexType> - -</xs:schema> diff --git a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/wsdli.xsd b/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/wsdli.xsd deleted file mode 100644 index 79af5e9363..0000000000 --- a/branches/sca-java-1.5.2/modules/assembly-xsd/src/main/resources/wsdli.xsd +++ /dev/null @@ -1,34 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!--DOCTYPE xs:schema PUBLIC "-//W3C//DTD XMLSCHEMA 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd"--> -<!-- $Id: wsdl-instance.xsd,v 1.1 2004/08/03 16:02:04 hugo Exp $ --> -<!-- - W3C XML Schema defined in the Web Services Description (WSDL) - Version 2.0 specification - http://www.w3.org/TR/wsdl20 - - Copyright (c) 2004 World Wide Web Consortium, - - (Massachusetts Institute of Technology, European Research Consortium for - Informatics and Mathematics, Keio University). All Rights Reserved. This - work is distributed under the W3C(r) Software License [1] in the hope that - it will be useful, but WITHOUT ANY WARRANTY; without even the implied - warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 ---> -<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:wsdli="http://www.w3.org/2004/08/wsdl-instance" targetNamespace="http://www.w3.org/2004/08/wsdl-instance" elementFormDefault="qualified" finalDefault="" blockDefault="" attributeFormDefault="unqualified"> - - <xs:attribute name="wsdlLocation"> - <xs:annotation> - <xs:documentation> - This attribute can be used to provide some hints on where - additional WSDL information for a given namespace can be - found in order to help with QName resolution - </xs:documentation> - </xs:annotation> - <xs:simpleType> - <xs:list itemType="xs:anyURI"/> - </xs:simpleType> - </xs:attribute> - -</xs:schema> |