From bd4be89d2a0132c1286c4be993292a460fa35442 Mon Sep 17 00:00:00 2001 From: antelder Date: Fri, 30 Oct 2009 09:02:28 +0000 Subject: Tag 2.0-M4 RC1 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@831233 13f79535-47bb-0310-9956-ffa450edef68 --- .../context/access/CalculatorService-context.xml | 45 ++++++++++++++++++++ .../context/access/ContextAccess.composite | 49 ++++++++++++++++++++++ .../context/imports/ContextImports.composite | 49 ++++++++++++++++++++++ .../META-INF/spring/CalculatorService-context.xml | 39 +++++++++++++++++ .../META-INF/spring/SpringImport-context.xml | 29 +++++++++++++ .../context/multiple/MultipleContext.composite | 30 +++++++++++++ .../multiple/springapp/META-INF/MANIFEST.MF | 3 ++ .../META-INF/spring/SpringHelloWorld-context.xml | 31 ++++++++++++++ .../META-INF/spring/StockQuoteService-context.xml | 36 ++++++++++++++++ .../springapp/META-INF/spring/beanRefContext.xml | 34 +++++++++++++++ 10 files changed, 345 insertions(+) create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/access/CalculatorService-context.xml create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/access/ContextAccess.composite create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/ContextImports.composite create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/META-INF/spring/CalculatorService-context.xml create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/META-INF/spring/SpringImport-context.xml create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/MultipleContext.composite create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/MANIFEST.MF create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/SpringHelloWorld-context.xml create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/StockQuoteService-context.xml create mode 100644 tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/beanRefContext.xml (limited to 'tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context') diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/access/CalculatorService-context.xml b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/access/CalculatorService-context.xml new file mode 100644 index 0000000000..81d59432b8 --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/access/CalculatorService-context.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/access/ContextAccess.composite b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/access/ContextAccess.composite new file mode 100644 index 0000000000..abdaa98bff --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/access/ContextAccess.composite @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/ContextImports.composite b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/ContextImports.composite new file mode 100644 index 0000000000..dd186bddfc --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/ContextImports.composite @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/META-INF/spring/CalculatorService-context.xml b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/META-INF/spring/CalculatorService-context.xml new file mode 100644 index 0000000000..c50f0ef4d9 --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/META-INF/spring/CalculatorService-context.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/META-INF/spring/SpringImport-context.xml b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/META-INF/spring/SpringImport-context.xml new file mode 100644 index 0000000000..a0bb10e8dd --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/imports/META-INF/spring/SpringImport-context.xml @@ -0,0 +1,29 @@ + + + + + + + \ No newline at end of file diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/MultipleContext.composite b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/MultipleContext.composite new file mode 100644 index 0000000000..1c4b81db33 --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/MultipleContext.composite @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/MANIFEST.MF b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..9267f28e83 --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Spring-Context: META-INF/spring/beanRefContext.xml; META-INF/spring/StockQuoteService-context.xml + diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/SpringHelloWorld-context.xml b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/SpringHelloWorld-context.xml new file mode 100644 index 0000000000..62e4e077b6 --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/SpringHelloWorld-context.xml @@ -0,0 +1,31 @@ + + + + + + + + + \ No newline at end of file diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/StockQuoteService-context.xml b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/StockQuoteService-context.xml new file mode 100644 index 0000000000..5b1885d6b3 --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/StockQuoteService-context.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/beanRefContext.xml b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/beanRefContext.xml new file mode 100644 index 0000000000..dcc88f6770 --- /dev/null +++ b/tags/java/sca/2.0-M4-RC1/itest/implementation-spring/src/main/resources/context/multiple/springapp/META-INF/spring/beanRefContext.xml @@ -0,0 +1,34 @@ + + + + + + + + context/multiple/springapp/META-INF/spring/SpringHelloWorld-context.xml + + + + \ No newline at end of file -- cgit v1.2.3