From bdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a Mon Sep 17 00:00:00 2001 From: dims Date: Tue, 17 Jun 2008 00:23:01 +0000 Subject: Move Tuscany from Incubator to top level. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68 --- .../rdb/src/test/resources/1xM_mapping_no_cud.xml | 36 ++++++++++++++ .../rdb/src/test/resources/BooksConfig.xml | 30 ++++++++++++ .../src/test/resources/BooksConfigWithAlias.xml | 36 ++++++++++++++ .../rdb/src/test/resources/CompanyConfig.xml | 43 ++++++++++++++++ .../src/test/resources/CompanyEmployeeConfig.xml | 54 ++++++++++++++++++++ .../rdb/src/test/resources/CustomerConfig.xml | 24 +++++++++ .../test/resources/CustomerConfigWithConverter.xml | 33 +++++++++++++ .../resources/CustomerConfigWithConverter2.xml | 29 +++++++++++ .../resources/CustomerConfigWithIDConverter.xml | 32 ++++++++++++ .../src/test/resources/CustomersOrdersConfig.xml | 51 +++++++++++++++++++ .../rdb/src/test/resources/InvalidConfig1.xml | 32 ++++++++++++ .../rdb/src/test/resources/InvalidConverter.xml | 36 ++++++++++++++ .../rdb/src/test/resources/ManagedBooksConfig.xml | 30 ++++++++++++ .../src/test/resources/MultiSchemaDasConfig1.xml | 36 ++++++++++++++ .../src/test/resources/MultiSchemaDasConfig12.xml | 33 +++++++++++++ .../src/test/resources/MultiSchemaDasConfig13.xml | 34 +++++++++++++ .../src/test/resources/MultiSchemaDasConfig14.xml | 37 ++++++++++++++ .../src/test/resources/MultiSchemaDasConfig2.xml | 45 +++++++++++++++++ .../src/test/resources/MultiSchemaDasConfig3.xml | 32 ++++++++++++ .../src/test/resources/MultiSchemaDasConfig5.xml | 32 ++++++++++++ .../src/test/resources/MultiSchemaDasConfig6.xml | 38 +++++++++++++++ .../src/test/resources/MultiSchemaDasConfig7.xml | 26 ++++++++++ .../src/test/resources/MultiSchemaDasConfig8.xml | 34 +++++++++++++ .../src/test/resources/MultiSchemaDasConfig9.xml | 30 ++++++++++++ .../test/resources/MultiSchemaInvalidDasConfig.xml | 47 ++++++++++++++++++ .../test/resources/OneToOneRestrictedConfig.xml | 54 ++++++++++++++++++++ .../test/resources/OrderDetailsAndDescription.xml | 35 +++++++++++++ .../test/resources/OrdersOrderDetailsConfig.xml | 36 ++++++++++++++ .../rdb/src/test/resources/PartsConfig.xml | 50 +++++++++++++++++++ .../resources/basicCompanyDepartmentMapping.xml | 39 +++++++++++++++ .../rdb/src/test/resources/basicCompanyMapping.xml | 25 ++++++++++ .../src/test/resources/basicCustomerMapping.xml | 29 +++++++++++ .../test/resources/basicCustomerMappingWithCUD.xml | 28 +++++++++++ .../resources/basicCustomerMappingWithCUD2.xml | 31 ++++++++++++ .../basicCustomerMappingWithInvalidCUD.xml | 32 ++++++++++++ .../test/resources/basicCustomerOrderMapping.xml | 35 +++++++++++++ .../rdb/src/test/resources/basicStaticCustomer.xml | 28 +++++++++++ .../rdb/src/test/resources/cityStates.xml | 40 +++++++++++++++ .../rdb/src/test/resources/company.xsd | 48 ++++++++++++++++++ .../rdb/src/test/resources/companyMapping.xml | 42 ++++++++++++++++ .../resources/companyMappingWithConverters.xml | 44 +++++++++++++++++ .../companyMappingWithResultDescriptor.xml | 57 ++++++++++++++++++++++ .../rdb/src/test/resources/customer.xsd | 43 ++++++++++++++++ .../rdb/src/test/resources/customerMapping.xml | 28 +++++++++++ .../resources/customerOrderRelationshipMapping.xml | 34 +++++++++++++ .../rdb/src/test/resources/passiveConnection.xml | 26 ++++++++++ .../rdb/src/test/resources/staticCustomer.xml | 23 +++++++++ .../rdb/src/test/resources/staticCustomerOrder.xml | 36 ++++++++++++++ .../rdb/src/test/resources/staticInvalid.xml | 23 +++++++++ .../rdb/src/test/resources/storedProcTest.xml | 27 ++++++++++ 50 files changed, 1783 insertions(+) create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/1xM_mapping_no_cud.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/BooksConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/BooksConfigWithAlias.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CompanyConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CompanyEmployeeConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithConverter.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithConverter2.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithIDConverter.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomersOrdersConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/InvalidConfig1.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/InvalidConverter.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/ManagedBooksConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig1.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig12.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig13.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig14.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig2.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig3.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig5.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig6.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig7.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig8.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig9.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaInvalidDasConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OneToOneRestrictedConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OrderDetailsAndDescription.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OrdersOrderDetailsConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/PartsConfig.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCompanyDepartmentMapping.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCompanyMapping.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMapping.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithCUD.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithCUD2.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithInvalidCUD.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerOrderMapping.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicStaticCustomer.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/cityStates.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/company.xsd create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMapping.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMappingWithConverters.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMappingWithResultDescriptor.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customer.xsd create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customerMapping.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customerOrderRelationshipMapping.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/passiveConnection.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticCustomer.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticCustomerOrder.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticInvalid.xml create mode 100644 tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/storedProcTest.xml (limited to 'tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources') diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/1xM_mapping_no_cud.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/1xM_mapping_no_cud.xml new file mode 100644 index 0000000000..95267de08b --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/1xM_mapping_no_cud.xml @@ -0,0 +1,36 @@ + + + + + + +
+ + + + +
+ + + + + +
+ diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/BooksConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/BooksConfig.xml new file mode 100644 index 0000000000..2da86cbdb2 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/BooksConfig.xml @@ -0,0 +1,30 @@ + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/BooksConfigWithAlias.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/BooksConfigWithAlias.xml new file mode 100644 index 0000000000..91bdccfac5 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/BooksConfigWithAlias.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CompanyConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CompanyConfig.xml new file mode 100644 index 0000000000..793697c314 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CompanyConfig.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + +
+ + + +
+ + + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CompanyEmployeeConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CompanyEmployeeConfig.xml new file mode 100644 index 0000000000..0e25268afa --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CompanyEmployeeConfig.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + + + +
+ diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfig.xml new file mode 100644 index 0000000000..ed544f39dd --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfig.xml @@ -0,0 +1,24 @@ + + + + + + + diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithConverter.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithConverter.xml new file mode 100644 index 0000000000..b38922b53a --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithConverter.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithConverter2.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithConverter2.xml new file mode 100644 index 0000000000..bb49a414c4 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithConverter2.xml @@ -0,0 +1,29 @@ + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithIDConverter.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithIDConverter.xml new file mode 100644 index 0000000000..9a567b7ea8 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomerConfigWithIDConverter.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomersOrdersConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomersOrdersConfig.xml new file mode 100644 index 0000000000..323c8cb6ba --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/CustomersOrdersConfig.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + +
+ + + +
+ + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/InvalidConfig1.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/InvalidConfig1.xml new file mode 100644 index 0000000000..fa1e353281 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/InvalidConfig1.xml @@ -0,0 +1,32 @@ + + + + + + + +
+ + + + + +
\ No newline at end of file diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/InvalidConverter.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/InvalidConverter.xml new file mode 100644 index 0000000000..e6c15ad11f --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/InvalidConverter.xml @@ -0,0 +1,36 @@ + + + + + + +
+ + + + +
+ + + + + +
+ diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/ManagedBooksConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/ManagedBooksConfig.xml new file mode 100644 index 0000000000..c2b833d2bf --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/ManagedBooksConfig.xml @@ -0,0 +1,30 @@ + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig1.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig1.xml new file mode 100644 index 0000000000..2555a9ed64 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig1.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig12.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig12.xml new file mode 100644 index 0000000000..63ac8230ce --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig12.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig13.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig13.xml new file mode 100644 index 0000000000..6458108a63 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig13.xml @@ -0,0 +1,34 @@ + + + + + + +
+ + + +
+ + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig14.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig14.xml new file mode 100644 index 0000000000..4b37a11138 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig14.xml @@ -0,0 +1,37 @@ + + + + + + + +
+ + + +
+ + + + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig2.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig2.xml new file mode 100644 index 0000000000..d055735590 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig2.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + +
+ + + +
+ + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig3.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig3.xml new file mode 100644 index 0000000000..06727c6a79 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig3.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig5.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig5.xml new file mode 100644 index 0000000000..6915c69576 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig5.xml @@ -0,0 +1,32 @@ + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig6.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig6.xml new file mode 100644 index 0000000000..fd3d177ad4 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig6.xml @@ -0,0 +1,38 @@ + + + + + + + + + + +
+ + + + +
+ + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig7.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig7.xml new file mode 100644 index 0000000000..eab57c759e --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig7.xml @@ -0,0 +1,26 @@ + + + + + + + diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig8.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig8.xml new file mode 100644 index 0000000000..205010c5c6 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig8.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig9.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig9.xml new file mode 100644 index 0000000000..84a10531aa --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaDasConfig9.xml @@ -0,0 +1,30 @@ + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaInvalidDasConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaInvalidDasConfig.xml new file mode 100644 index 0000000000..4658493dbd --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/MultiSchemaInvalidDasConfig.xml @@ -0,0 +1,47 @@ + + + + + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OneToOneRestrictedConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OneToOneRestrictedConfig.xml new file mode 100644 index 0000000000..82956b5b1d --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OneToOneRestrictedConfig.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + + + +
+ diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OrderDetailsAndDescription.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OrderDetailsAndDescription.xml new file mode 100644 index 0000000000..d5bc8d44a8 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OrderDetailsAndDescription.xml @@ -0,0 +1,35 @@ + + + + + + + +
+ + + +
+ + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OrdersOrderDetailsConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OrdersOrderDetailsConfig.xml new file mode 100644 index 0000000000..2e998ee57e --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/OrdersOrderDetailsConfig.xml @@ -0,0 +1,36 @@ + + + + + + + +
+ + + +
+ + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/PartsConfig.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/PartsConfig.xml new file mode 100644 index 0000000000..b1809079d6 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/PartsConfig.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCompanyDepartmentMapping.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCompanyDepartmentMapping.xml new file mode 100644 index 0000000000..bd648cd2ef --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCompanyDepartmentMapping.xml @@ -0,0 +1,39 @@ + + + + + + + +
+ + + + + + + +
+ + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCompanyMapping.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCompanyMapping.xml new file mode 100644 index 0000000000..b6ca4f9feb --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCompanyMapping.xml @@ -0,0 +1,25 @@ + + + + + + +
+
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMapping.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMapping.xml new file mode 100644 index 0000000000..a81ca90f8e --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMapping.xml @@ -0,0 +1,29 @@ + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithCUD.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithCUD.xml new file mode 100644 index 0000000000..c3e31c1d98 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithCUD.xml @@ -0,0 +1,28 @@ + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithCUD2.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithCUD2.xml new file mode 100644 index 0000000000..8673559b5d --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithCUD2.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithInvalidCUD.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithInvalidCUD.xml new file mode 100644 index 0000000000..5d63fb2fab --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerMappingWithInvalidCUD.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerOrderMapping.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerOrderMapping.xml new file mode 100644 index 0000000000..c03d9392ed --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicCustomerOrderMapping.xml @@ -0,0 +1,35 @@ + + + + + + +
+ + + +
+ + + + + +
+ diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicStaticCustomer.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicStaticCustomer.xml new file mode 100644 index 0000000000..c4b4fe56af --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/basicStaticCustomer.xml @@ -0,0 +1,28 @@ + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/cityStates.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/cityStates.xml new file mode 100644 index 0000000000..1908ba4268 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/cityStates.xml @@ -0,0 +1,40 @@ + + + + + + + +
+ + + + + + + +
+ + + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/company.xsd b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/company.xsd new file mode 100644 index 0000000000..a7118ec808 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/company.xsd @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMapping.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMapping.xml new file mode 100644 index 0000000000..9388cf8264 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMapping.xml @@ -0,0 +1,42 @@ + + + + + + +
+ + + +
+ + + +
+ + + + + + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMappingWithConverters.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMappingWithConverters.xml new file mode 100644 index 0000000000..74c6e0619f --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMappingWithConverters.xml @@ -0,0 +1,44 @@ + + + + + + +
+ + + + +
+ + + + +
+ + + + + + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMappingWithResultDescriptor.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMappingWithResultDescriptor.xml new file mode 100644 index 0000000000..419f27eca3 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/companyMappingWithResultDescriptor.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + + + + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customer.xsd b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customer.xsd new file mode 100644 index 0000000000..e5482ae3a0 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customer.xsd @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customerMapping.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customerMapping.xml new file mode 100644 index 0000000000..3de367e0c6 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customerMapping.xml @@ -0,0 +1,28 @@ + + + + + + + + +
+ +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customerOrderRelationshipMapping.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customerOrderRelationshipMapping.xml new file mode 100644 index 0000000000..ed931e03cd --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/customerOrderRelationshipMapping.xml @@ -0,0 +1,34 @@ + + + + + + +
+ + +
+ + + + + +
+ diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/passiveConnection.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/passiveConnection.xml new file mode 100644 index 0000000000..6a23200d49 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/passiveConnection.xml @@ -0,0 +1,26 @@ + + + + + + + + + diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticCustomer.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticCustomer.xml new file mode 100644 index 0000000000..705e4b34a9 --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticCustomer.xml @@ -0,0 +1,23 @@ + + + + + + diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticCustomerOrder.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticCustomerOrder.xml new file mode 100644 index 0000000000..afbe2a8cfb --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticCustomerOrder.xml @@ -0,0 +1,36 @@ + + + + + + + + +
+ + + +
+ + + + + +
diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticInvalid.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticInvalid.xml new file mode 100644 index 0000000000..965c99717f --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/staticInvalid.xml @@ -0,0 +1,23 @@ + + + + + + diff --git a/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/storedProcTest.xml b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/storedProcTest.xml new file mode 100644 index 0000000000..beb1ca34ac --- /dev/null +++ b/tags/java/das/1.0-incubating-beta1-rc4/rdb/src/test/resources/storedProcTest.xml @@ -0,0 +1,27 @@ + + + + + + + + + + -- cgit v1.2.3