diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-09 15:17:30 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-09 15:17:30 +0000 |
commit | 4a064d3ed25116127575a51692987d6fb64fbff1 (patch) | |
tree | c03ccc1ad2425bb8f3dc559590d28ac81d814bbe /branches/sca-java-1.x/modules | |
parent | 3b46190564fad809849c5a57282d5283706987e1 (diff) |
Removing obsolete schemas
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@783033 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
3 files changed, 0 insertions, 135 deletions
diff --git a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-data-helper.xsd b/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-data-helper.xsd deleted file mode 100644 index 4331da0439..0000000000 --- a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-data-helper.xsd +++ /dev/null @@ -1,44 +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://data.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" - xmlns:data="http://data.tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <complexType name="ConnectionProperties"> - <attribute name="driverClass" type="string" /> - <attribute name="databaseURL" type="string" /> - <attribute name="userName" type="string" default="" /> - <attribute name="password" type="string" default="" /> - <attribute name="loginTimeout" type="int" default="0" /> - </complexType> - - <complexType name="ConnectionInfo"> - <sequence> - <element maxOccurs="1" minOccurs="0" - name="ConnectionProperties" type="data:ConnectionProperties" /> - </sequence> - <attribute name="dataSource" type="string" /> - <attribute name="managedtx" type="boolean" - default="true" /> - </complexType> -</schema> diff --git a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-das.xsd b/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-das.xsd deleted file mode 100644 index 1f6f9abb16..0000000000 --- a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-das.xsd +++ /dev/null @@ -1,46 +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" - xmlns:data="http://data.tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - <import namespace="http://data.tuscany.apache.org/xmlns/sca/1.0" schemaLocation="tuscany-sca-data-helper.xsd"/> - - <element name="implementation.das" type="t:DASImplementation"/> - - <complexType name="DASImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - <element maxOccurs="1" minOccurs="0" name="ConnectionInfo" - type="data:ConnectionInfo"/> - </sequence> - <attribute name="config" type="NCName" use="required"/> - <attribute name="dataAccessType" type="NCName" use="required"/> - </extension> - </complexContent> - </complexType> -</schema> diff --git a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-data-xml.xsd b/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-data-xml.xsd deleted file mode 100644 index 4a06bdd36a..0000000000 --- a/branches/sca-java-1.x/modules/assembly-xsd/src/main/resources/tuscany-sca-implementation-data-xml.xsd +++ /dev/null @@ -1,45 +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" - xmlns:data="http://data.tuscany.apache.org/xmlns/sca/1.0" - elementFormDefault="qualified"> - - <import namespace="http://www.osoa.org/xmlns/sca/1.0" schemaLocation="sca-core.xsd"/> - <import namespace="http://data.tuscany.apache.org/xmlns/sca/1.0" schemaLocation="tuscany-sca-data-helper.xsd"/> - - <element name="implementation.data" type="t:DATAImplementation"/> - - <complexType name="DATAImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <sequence> - <any namespace="##targetNamespace" processContents="lax" - minOccurs="0" maxOccurs="unbounded"/> - <element maxOccurs="1" minOccurs="0" name="ConnectionInfo" - type="data:ConnectionInfo"/> - </sequence> - </extension> - </complexContent> - </complexType> - -</schema> |