You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by fr...@apache.org on 2006/12/18 22:45:34 UTC

svn commit: r488433 - in /incubator/tuscany/java/sdo: impl/src/main/resources/xml/sdoModelChangeSummary.xsd impl/src/test/resources/sdoModel.xsd impl/src/test/resources/simpleWithChangeSummary.xsd tools/ tools/src/test/resources/sdoModel.xsd

Author: frankb
Date: Mon Dec 18 13:45:33 2006
New Revision: 488433

URL: http://svn.apache.org/viewvc?view=rev&rev=488433
Log:
Add fake XSD definitions of special SDO type ChangeSummaryType

Added:
    incubator/tuscany/java/sdo/impl/src/main/resources/xml/sdoModelChangeSummary.xsd
    incubator/tuscany/java/sdo/impl/src/test/resources/sdoModel.xsd
    incubator/tuscany/java/sdo/tools/src/test/resources/sdoModel.xsd
Modified:
    incubator/tuscany/java/sdo/impl/src/test/resources/simpleWithChangeSummary.xsd
    incubator/tuscany/java/sdo/tools/   (props changed)

Added: incubator/tuscany/java/sdo/impl/src/main/resources/xml/sdoModelChangeSummary.xsd
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sdo/impl/src/main/resources/xml/sdoModelChangeSummary.xsd?view=auto&rev=488433
==============================================================================
--- incubator/tuscany/java/sdo/impl/src/main/resources/xml/sdoModelChangeSummary.xsd (added)
+++ incubator/tuscany/java/sdo/impl/src/main/resources/xml/sdoModelChangeSummary.xsd Mon Dec 18 13:45:33 2006
@@ -0,0 +1,28 @@
+<?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.
+ -->
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sdo="commonj.sdo" xmlns:sdoJava="commonj.sdo/java" targetNamespace="commonj.sdo"> 
+
+  <!-- Dummy XSD definition of special SDO ChangeSummaryType -->
+  <xsd:simpleType name="ChangeSummaryType" sdoJava:instanceClass="commonj.sdo.ChangeSummary">
+    <xsd:restriction base="xsd:string"/>
+  </xsd:simpleType>
+
+
+</xsd:schema>

Added: incubator/tuscany/java/sdo/impl/src/test/resources/sdoModel.xsd
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sdo/impl/src/test/resources/sdoModel.xsd?view=auto&rev=488433
==============================================================================
--- incubator/tuscany/java/sdo/impl/src/test/resources/sdoModel.xsd (added)
+++ incubator/tuscany/java/sdo/impl/src/test/resources/sdoModel.xsd Mon Dec 18 13:45:33 2006
@@ -0,0 +1,28 @@
+<?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.
+ -->
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sdo="commonj.sdo" xmlns:sdoJava="commonj.sdo/java" targetNamespace="commonj.sdo"> 
+
+  <!-- Dummy XSD definition of special SDO ChangeSummaryType -->
+  <xsd:simpleType name="ChangeSummaryType" sdoJava:instanceClass="commonj.sdo.ChangeSummary">
+    <xsd:restriction base="xsd:string"/>
+  </xsd:simpleType>
+
+
+</xsd:schema>

Modified: incubator/tuscany/java/sdo/impl/src/test/resources/simpleWithChangeSummary.xsd
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sdo/impl/src/test/resources/simpleWithChangeSummary.xsd?view=diff&rev=488433&r1=488432&r2=488433
==============================================================================
--- incubator/tuscany/java/sdo/impl/src/test/resources/simpleWithChangeSummary.xsd (original)
+++ incubator/tuscany/java/sdo/impl/src/test/resources/simpleWithChangeSummary.xsd Mon Dec 18 13:45:33 2006
@@ -30,7 +30,7 @@
 
   </xsd:complexType>
   		   
-  <xsd:element name="stockQuote" type="simpleCS:QuoteBase"/>
+  <xsd:element name="stockQuote" type="simpleCS:RootQuote"/>
 
   <xsd:complexType name="Quote">
     <xsd:sequence>

Propchange: incubator/tuscany/java/sdo/tools/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Dec 18 13:45:33 2006
@@ -1,3 +1,4 @@
+
 target
 *.iws
 *.ipr
@@ -10,4 +11,4 @@
 .settings
 .deployables
 .wtpmodules
-
+.jetproperties

Added: incubator/tuscany/java/sdo/tools/src/test/resources/sdoModel.xsd
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sdo/tools/src/test/resources/sdoModel.xsd?view=auto&rev=488433
==============================================================================
--- incubator/tuscany/java/sdo/tools/src/test/resources/sdoModel.xsd (added)
+++ incubator/tuscany/java/sdo/tools/src/test/resources/sdoModel.xsd Mon Dec 18 13:45:33 2006
@@ -0,0 +1,28 @@
+<?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.
+ -->
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sdo="commonj.sdo" xmlns:sdoJava="commonj.sdo/java" targetNamespace="commonj.sdo"> 
+
+  <!-- Dummy XSD definition of special SDO ChangeSummaryType -->
+  <xsd:simpleType name="ChangeSummaryType" sdoJava:instanceClass="commonj.sdo.ChangeSummary">
+    <xsd:restriction base="xsd:string"/>
+  </xsd:simpleType>
+
+
+</xsd:schema>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org