From 836328ea2ca7c6780307abf258503201c91e5a96 Mon Sep 17 00:00:00 2001 From: lresende Date: Tue, 10 Nov 2009 19:20:03 +0000 Subject: moving SDO branches git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@834615 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/resources/SchemaLocationTestCase.xml | 33 +++ .../src/test/resources/SequenceChangeSummary.xsd | 48 +++++ .../impl/src/test/resources/SubstitutionValues.xsd | 31 +++ .../test/resources/TypePropertyMetadataInfo.xsd | 97 +++++++++ .../XMLDocumentNoNamespaceSchemaLocation.xsd | 31 +++ .../test/resources/XMLDocumentSchemaLocation.xsd | 35 ++++ .../src/test/resources/XMLDocumentTestCase.xml | 32 +++ .../impl/src/test/resources/XMLStreamHelper.xsd | 41 ++++ .../impl/src/test/resources/anytype.xsd | 36 ++++ .../impl/src/test/resources/api_test.xsd | 46 ++++ .../impl/src/test/resources/bank.xsd | 78 +++++++ .../impl/src/test/resources/bounds.xsd | 45 ++++ .../impl/src/test/resources/company.xsd | 44 ++++ .../impl/src/test/resources/containmenttest.xsd | 31 +++ .../impl/src/test/resources/customer1.xml | 8 + .../impl/src/test/resources/customer2.xml | 8 + .../impl/src/test/resources/datatype.xsd | 34 +++ .../impl/src/test/resources/dotNames.xsd | 30 +++ .../impl/src/test/resources/dupelement.xsd | 39 ++++ .../impl/src/test/resources/expectedExceptions.xsd | 67 ++++++ .../impl/src/test/resources/foo-ext.xml | 27 +++ .../impl/src/test/resources/foo-ext.xsd | 44 ++++ .../impl/src/test/resources/foo.xsd | 232 +++++++++++++++++++++ .../impl/src/test/resources/ipo.xsd | 136 ++++++++++++ .../impl/src/test/resources/mixed.xml | 9 + .../impl/src/test/resources/mixed.xsd | 41 ++++ .../impl/src/test/resources/mixed2.xml | 12 ++ .../impl/src/test/resources/mixedChangeSummary.xml | 11 + .../test/resources/mixedChangeSummaryUndone.xml | 2 + .../impl/src/test/resources/mixedopen.xml | 13 ++ .../impl/src/test/resources/names.xsd | 33 +++ .../impl/src/test/resources/open.xml | 8 + .../impl/src/test/resources/open.xsd | 51 +++++ .../impl/src/test/resources/open1any.xsd | 44 ++++ .../impl/src/test/resources/open2.xml | 9 + .../impl/src/test/resources/openChangeSummary.xml | 24 +++ .../src/test/resources/openChangeSummaryUndone.xml | 17 ++ .../src/test/resources/openContentProperty.xml | 12 ++ .../impl/src/test/resources/osgi/sdo.impl.mf | 44 ++++ .../impl/src/test/resources/osgi/sdo.osgi.test.mf | 40 ++++ .../impl/src/test/resources/po.xsd | 80 +++++++ .../impl/src/test/resources/prefix.xsd | 24 +++ .../impl/src/test/resources/quote.xml | 14 ++ .../impl/src/test/resources/quoteInSOAP.xml | 37 ++++ .../impl/src/test/resources/sdoModel.xsd | 28 +++ .../impl/src/test/resources/sdoannotations.xsd | 60 ++++++ .../impl/src/test/resources/sdotypes.xsd | 71 +++++++ .../impl/src/test/resources/shallowquote.xml | 11 + .../impl/src/test/resources/shallowquote1.xml | 29 +++ .../impl/src/test/resources/simple.xsd | 41 ++++ .../impl/src/test/resources/simple2.xsd | 41 ++++ .../impl/src/test/resources/simple3.xsd | 34 +++ .../src/test/resources/simpleWithChangeSummary.xml | 28 +++ .../src/test/resources/simpleWithChangeSummary.xsd | 49 +++++ .../resources/simpleWithChangeSummaryUndone.xml | 19 ++ .../src/test/resources/simplechangesummary.xml | 33 +++ .../src/test/resources/substitutionValues1.xml | 23 ++ .../src/test/resources/substitutionValues2.xml | 23 ++ .../impl/src/test/resources/xpath.xml | 51 +++++ .../impl/src/test/resources/xpath.xsd | 75 +++++++ .../impl/src/test/resources/xsdCorners.xsd | 34 +++ 61 files changed, 2428 insertions(+) create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SchemaLocationTestCase.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SequenceChangeSummary.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SubstitutionValues.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/TypePropertyMetadataInfo.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentNoNamespaceSchemaLocation.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentSchemaLocation.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentTestCase.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLStreamHelper.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/anytype.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/api_test.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/bank.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/bounds.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/company.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/containmenttest.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/customer1.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/customer2.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/datatype.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/dotNames.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/dupelement.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/expectedExceptions.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo-ext.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo-ext.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/ipo.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed2.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedChangeSummary.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedChangeSummaryUndone.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedopen.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/names.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open1any.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open2.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openChangeSummary.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openChangeSummaryUndone.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openContentProperty.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/osgi/sdo.impl.mf create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/osgi/sdo.osgi.test.mf create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/po.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/prefix.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/quote.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/quoteInSOAP.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdoModel.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdoannotations.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdotypes.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/shallowquote.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/shallowquote1.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple2.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple3.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummary.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummary.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummaryUndone.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simplechangesummary.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/substitutionValues1.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/substitutionValues2.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xpath.xml create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xpath.xsd create mode 100644 sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xsdCorners.xsd (limited to 'sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources') diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SchemaLocationTestCase.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SchemaLocationTestCase.xml new file mode 100644 index 0000000000..e13f45a877 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SchemaLocationTestCase.xml @@ -0,0 +1,33 @@ + + + + some string + + another string + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SequenceChangeSummary.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SequenceChangeSummary.xsd new file mode 100644 index 0000000000..dd3c2bc2dc --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SequenceChangeSummary.xsd @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SubstitutionValues.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SubstitutionValues.xsd new file mode 100644 index 0000000000..e977e6e631 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/SubstitutionValues.xsd @@ -0,0 +1,31 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/TypePropertyMetadataInfo.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/TypePropertyMetadataInfo.xsd new file mode 100644 index 0000000000..7a78772733 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/TypePropertyMetadataInfo.xsd @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + forest.jpg + + + + + + + + + + getNumber + setNumber + + + + + + + + + + getPhonetype + setPhonetype + + + + + + + + + + + This is the metadata for defining the ExampleNumber type. + + + + + + + + + + + + This is the metadata for defining the PhoneNumber type. + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentNoNamespaceSchemaLocation.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentNoNamespaceSchemaLocation.xsd new file mode 100644 index 0000000000..c2beb7708d --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentNoNamespaceSchemaLocation.xsd @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentSchemaLocation.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentSchemaLocation.xsd new file mode 100644 index 0000000000..0561eb555b --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentSchemaLocation.xsd @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentTestCase.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentTestCase.xml new file mode 100644 index 0000000000..de22090908 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLDocumentTestCase.xml @@ -0,0 +1,32 @@ + + + some string + + another string + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLStreamHelper.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLStreamHelper.xsd new file mode 100644 index 0000000000..492f61b1d2 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/XMLStreamHelper.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/anytype.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/anytype.xsd new file mode 100644 index 0000000000..db10376360 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/anytype.xsd @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/api_test.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/api_test.xsd new file mode 100644 index 0000000000..5238c72605 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/api_test.xsd @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/bank.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/bank.xsd new file mode 100644 index 0000000000..a0cb7970b0 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/bank.xsd @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/bounds.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/bounds.xsd new file mode 100644 index 0000000000..4d92d6e1fe --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/bounds.xsd @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/company.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/company.xsd new file mode 100644 index 0000000000..18e99352be --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/company.xsd @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/containmenttest.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/containmenttest.xsd new file mode 100644 index 0000000000..e576bc9b41 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/containmenttest.xsd @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/customer1.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/customer1.xml new file mode 100644 index 0000000000..5a29e30a3c --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/customer1.xml @@ -0,0 +1,8 @@ + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/customer2.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/customer2.xml new file mode 100644 index 0000000000..e9ebb92677 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/customer2.xml @@ -0,0 +1,8 @@ + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/datatype.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/datatype.xsd new file mode 100644 index 0000000000..05f55e0502 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/datatype.xsd @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/dotNames.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/dotNames.xsd new file mode 100644 index 0000000000..a788b7b4f4 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/dotNames.xsd @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/dupelement.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/dupelement.xsd new file mode 100644 index 0000000000..da2f6920d4 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/dupelement.xsd @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/expectedExceptions.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/expectedExceptions.xsd new file mode 100644 index 0000000000..cd12447cd9 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/expectedExceptions.xsd @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo-ext.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo-ext.xml new file mode 100644 index 0000000000..f8c9bc4702 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo-ext.xml @@ -0,0 +1,27 @@ + + + + 1Dummy2 + + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo-ext.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo-ext.xsd new file mode 100644 index 0000000000..4cdfd1bcd6 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo-ext.xsd @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo.xsd new file mode 100644 index 0000000000..f50002ec3d --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/foo.xsd @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/ipo.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/ipo.xsd new file mode 100644 index 0000000000..241ec15d36 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/ipo.xsd @@ -0,0 +1,136 @@ + + + + + + International Purchase order schema for Example.com + Copyright 2000 Example.com. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed.xml new file mode 100644 index 0000000000..42ff3a3a5b --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed.xml @@ -0,0 +1,9 @@ + + + fbnt + FlyByNightTechnology + some text + 2000.0 + more text + 1000.0 + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed.xsd new file mode 100644 index 0000000000..deee92e9c1 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed2.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed2.xml new file mode 100644 index 0000000000..d95d179478 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixed2.xml @@ -0,0 +1,12 @@ + + + fbnt + FlyByNightTechnology + some text + 2000.0 + more text + 1000.0 + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedChangeSummary.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedChangeSummary.xml new file mode 100644 index 0000000000..49dbb89f38 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedChangeSummary.xml @@ -0,0 +1,11 @@ + + + + fbnt + FlyByNightTechnology + 1000.0 + + 2000.02000.99 + + +FBNTFlyByNightTechnology999.01500.02500.01000.03000.04000.0 \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedChangeSummaryUndone.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedChangeSummaryUndone.xml new file mode 100644 index 0000000000..d8097ace8b --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedChangeSummaryUndone.xml @@ -0,0 +1,2 @@ + +fbntFlyByNightTechnology1000.01500.02000.02000.992500.0 \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedopen.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedopen.xml new file mode 100644 index 0000000000..21a62ef2d0 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/mixedopen.xml @@ -0,0 +1,13 @@ + + + fbnt + FlyByNightTechnology + some text + 2000.0 + more text + 1000.0 + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/names.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/names.xsd new file mode 100644 index 0000000000..9096b2d62f --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/names.xsd @@ -0,0 +1,33 @@ + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open.xml new file mode 100644 index 0000000000..d4a5b92e0c --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open.xml @@ -0,0 +1,8 @@ + + + s1 + + FlyByNightTechnology + + 1000.0 + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open.xsd new file mode 100644 index 0000000000..803c0a9cee --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open.xsd @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open1any.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open1any.xsd new file mode 100644 index 0000000000..00efaef5e0 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open1any.xsd @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open2.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open2.xml new file mode 100644 index 0000000000..ab992ccf74 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/open2.xml @@ -0,0 +1,9 @@ + + + s1 + + 1000.0 + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openChangeSummary.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openChangeSummary.xml new file mode 100644 index 0000000000..4ef2dc5948 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openChangeSummary.xml @@ -0,0 +1,24 @@ + + + FBNT + + 1500.0 + + + 2500.0 + + + 3000.0 + + + 4000.0 + + + + fbnt + + 2000.02000.99 + + + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openChangeSummaryUndone.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openChangeSummaryUndone.xml new file mode 100644 index 0000000000..9883a3824a --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openChangeSummaryUndone.xml @@ -0,0 +1,17 @@ + + + fbnt + + 1500.0 + + + 2000.0 + + 2000.99 + + + + 2500.0 + + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openContentProperty.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openContentProperty.xml new file mode 100644 index 0000000000..68f4c116eb --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/openContentProperty.xml @@ -0,0 +1,12 @@ + + + s1 + + FlyByNightTechnology + + 1000.0 + 1100.0 + + mutual-1 + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/osgi/sdo.impl.mf b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/osgi/sdo.impl.mf new file mode 100644 index 0000000000..dfc58b624a --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/osgi/sdo.impl.mf @@ -0,0 +1,44 @@ +Manifest-Version: 1.0 +Extension-Name: tuscany-sdo-impl +Specification-Title: Tuscany SDO Implementation +Specification-Vendor: Apache Software Foundation +Implementation-Vendor: Apache Software Foundation +Implementation-Vendor-Id: org.apache +Implementation-Title: tuscany-sdo-impl +Implementation-Version: incubating-M3 +Bundle-ManifestVersion: 2 +Bundle-Name: Tuscany SDO Implementation +Bundle-SymbolicName: org.apache.tuscany.sdo.impl +Bundle-Version: 1.0.0 +Bundle-Vendor: Apache Software Foundation +Require-Bundle: org.eclipse.emf.common, + org.eclipse.emf.ecore, + org.eclipse.emf.ecore.change, + org.eclipse.emf.ecore.xmi, + org.eclipse.xsd, + org.apache.tuscany.sdo.lib;visibility:=reexport, + org.apache.tuscany.sdo.spec;visibility:=reexport +Import-Package: org.osgi.framework, + org.xml.sax, + org.xml.sax.helpers, + org.xml.sax.ext, + org.w3c.dom, + org.w3c.dom.events, + javax.xml, + javax.xml.parsers, + javax.xml.stream, + javax.xml.transform, + javax.xml.transform.dom, + javax.xml.transform.stream, + javax.xml.namespace, + org.objectweb.asm +Export-Package: + org.apache.tuscany.sdo, + org.apache.tuscany.sdo.helper, + org.apache.tuscany.sdo.impl, + org.apache.tuscany.sdo.util, + org.apache.tuscany.sdo.codegen, + org.apache.tuscany.sdo.model, + org.apache.tuscany.sdo.model.impl, + org.apache.tuscany.sdo.model.internal +Bundle-Activator: org.apache.tuscany.sdo.osgi.SdoBundleActivator diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/osgi/sdo.osgi.test.mf b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/osgi/sdo.osgi.test.mf new file mode 100644 index 0000000000..d63e3244d5 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/osgi/sdo.osgi.test.mf @@ -0,0 +1,40 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Tuscany SDO OSGi Tests +Bundle-SymbolicName: org.apache.tuscany.sdo.osgi.test +Bundle-Version: 1.0.0 +Bundle-Vendor: Apache Software Foundation +Import-Package: org.osgi.framework, + junit.framework, + javax.xml, + javax.xml.parsers, + org.xml.sax, + org.xml.sax.helpers, + org.xml.sax.ext, + org.w3c.dom, + org.w3c.dom.events, + javax.xml.stream, + javax.xml.transform, + javax.xml.transform.dom, + javax.xml.transform.stream, + javax.xml.namespace, + org.eclipse.emf.common, + org.eclipse.emf.common.archive, + org.eclipse.emf.common.command, + org.eclipse.emf.common.notify, + org.eclipse.emf.common.util, + org.eclipse.emf.ecore, + org.eclipse.emf.ecore.impl, + org.eclipse.emf.ecore.plugin, + org.eclipse.emf.ecore.resource, + org.eclipse.emf.ecore.util, + org.eclipse.emf.ecore.xml.namespace, + org.eclipse.emf.ecore.xml.namespace.util, + org.eclipse.emf.ecore.xml.type, + org.eclipse.emf.ecore.xml.type.util, + org.eclipse.xsd +Export-Package: org.apache.tuscany.sdo.osgi +Require-Bundle: org.apache.tuscany.sdo.lib;visibility:=reexport, + org.apache.tuscany.sdo.impl;visibility:=reexport, + org.apache.tuscany.sdo.spec;visibility:=reexport +Bundle-Activator: org.apache.tuscany.sdo.test.osgi.TestBundleActivator diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/po.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/po.xsd new file mode 100644 index 0000000000..d158dcf448 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/po.xsd @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/prefix.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/prefix.xsd new file mode 100644 index 0000000000..af3d3283f5 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/prefix.xsd @@ -0,0 +1,24 @@ + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/quote.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/quote.xml new file mode 100644 index 0000000000..d7b5969e23 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/quote.xml @@ -0,0 +1,14 @@ + + + fbnt + FlyByNightTechnology + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + + 2000.0 + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/quoteInSOAP.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/quoteInSOAP.xml new file mode 100644 index 0000000000..348b61047e --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/quoteInSOAP.xml @@ -0,0 +1,37 @@ + + + + + + + fbnt + FlyByNightTechnology + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + + 2000.0 + + + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdoModel.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdoModel.xsd new file mode 100644 index 0000000000..6b596c5b36 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdoModel.xsd @@ -0,0 +1,28 @@ + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdoannotations.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdoannotations.xsd new file mode 100644 index 0000000000..acdde2896a --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdoannotations.xsd @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdotypes.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdotypes.xsd new file mode 100644 index 0000000000..09c05bb671 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/sdotypes.xsd @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/shallowquote.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/shallowquote.xml new file mode 100644 index 0000000000..a56f2fe2b7 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/shallowquote.xml @@ -0,0 +1,11 @@ + + + fbnt + FlyByNightTechnology + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/shallowquote1.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/shallowquote1.xml new file mode 100644 index 0000000000..a9bb2bf330 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/shallowquote1.xml @@ -0,0 +1,29 @@ + + + + fbnt + FlyByNightTechnology + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple.xsd new file mode 100644 index 0000000000..661259e57a --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple2.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple2.xsd new file mode 100644 index 0000000000..53bace49b5 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple2.xsd @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple3.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple3.xsd new file mode 100644 index 0000000000..6ff14a85d2 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simple3.xsd @@ -0,0 +1,34 @@ + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummary.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummary.xml new file mode 100644 index 0000000000..2f29fc00f0 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummary.xml @@ -0,0 +1,28 @@ + + + FBNT + FlyByNightTechnology + 999.0 + 1000.0 + + 1500.0 + + + 2500.0 + + + 3000.0 + + + 4000.0 + + + + fbnt + 1000.0 + + 2000.02000.99 + + + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummary.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummary.xsd new file mode 100644 index 0000000000..1df0f69196 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummary.xsd @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummaryUndone.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummaryUndone.xml new file mode 100644 index 0000000000..a9c675b6c3 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simpleWithChangeSummaryUndone.xml @@ -0,0 +1,19 @@ + + + fbnt + FlyByNightTechnology + 1000.0 + + 1500.0 + + + 2000.0 + + 2000.99 + + + + 2500.0 + + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simplechangesummary.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simplechangesummary.xml new file mode 100644 index 0000000000..134e2f7de5 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/simplechangesummary.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + fbnt + FlyByNightTechnology + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + 1000.0 + + 2000.0 + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/substitutionValues1.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/substitutionValues1.xml new file mode 100644 index 0000000000..c534eb9370 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/substitutionValues1.xml @@ -0,0 +1,23 @@ + + + + gm + ngh + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/substitutionValues2.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/substitutionValues2.xml new file mode 100644 index 0000000000..d90d0f3a0c --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/substitutionValues2.xml @@ -0,0 +1,23 @@ + + + + gh + ngh + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xpath.xml b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xpath.xml new file mode 100644 index 0000000000..3b3e2ffbb4 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xpath.xml @@ -0,0 +1,51 @@ + + + + Folder00000000000 + marries inflamed apprehended beseeming bustle + + + + Brian + rw + + + Fuhwei + r + + + + + Hasan + + + Frank + + + + + + Folder00000000011 + Mumbling Jumblin Pink Panther goofs it up + + + + Imad + x + + + Robbie + rwx + + + + + Yang + + + Art + + + + + \ No newline at end of file diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xpath.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xpath.xsd new file mode 100644 index 0000000000..0b817d425d --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xpath.xsd @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xsdCorners.xsd b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xsdCorners.xsd new file mode 100644 index 0000000000..b62bfcae56 --- /dev/null +++ b/sdo-java/branches/sdo-1.1.1-incubating/impl/src/test/resources/xsdCorners.xsd @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + -- cgit v1.2.3