summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-integration/testing/sca/itest/spec/src/main/resources/myTotalServiceInRecursive.composite
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-integration/testing/sca/itest/spec/src/main/resources/myTotalServiceInRecursive.composite')
-rw-r--r--branches/sca-java-integration/testing/sca/itest/spec/src/main/resources/myTotalServiceInRecursive.composite62
1 files changed, 0 insertions, 62 deletions
diff --git a/branches/sca-java-integration/testing/sca/itest/spec/src/main/resources/myTotalServiceInRecursive.composite b/branches/sca-java-integration/testing/sca/itest/spec/src/main/resources/myTotalServiceInRecursive.composite
deleted file mode 100644
index 36802c75a6..0000000000
--- a/branches/sca-java-integration/testing/sca/itest/spec/src/main/resources/myTotalServiceInRecursive.composite
+++ /dev/null
@@ -1,62 +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.
--->
-<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
- xmlns:foo="http://foo"
- name="MyTotalServiceInRecursiveTest">
-
- <component name="MyServiceInComposite">
- <implementation.composite scdlLocation="myServiceInComposite.composite"/>
- </component>
-
- <component name="MyTotalServiceFromRecursive">
- <implementation.java class="org.apache.tuscany.sca.test.spec.impl.MyTotalServiceImpl"/>
- <reference name="myService" target="MyServiceInComposite/MyService"></reference>
- <reference name="myListService" target="MyServiceInComposite/MyListService"></reference>
- </component>
-
- <service name="MyTotalServiceInCompositeWithRecursiveUseService">
- <interface.java interface="org.apache.tuscany.sca.test.spec.MyTotalService"/>
- <reference>MyTotalServiceInCompositeWithRecursive</reference>
- </service>
-
- <service name="MyTotalServiceInCompositeWithComponentServiceUseService">
- <interface.java interface="org.apache.tuscany.sca.test.spec.MyTotalService"/>
- <reference>MyTotalServiceInCompositeWithComponentService</reference>
- </service>
-
- <component name="MyTotalServiceInCompositeWithRecursive">
- <implementation.composite scdlLocation="myTotalServiceInComposite.composite"/>
- <reference name="MyServiceRef" target="MyServiceInComposite/MyService"></reference>
- <reference name="MyListServiceRef" target="MyServiceInComposite/MyListService"></reference>
- </component>
-
- <component name="MyTotalServiceInCompositeWithComponentService">
- <implementation.composite scdlLocation="myTotalServiceInComposite.composite"/>
- <reference name="MyServiceRef" target="MyServiceInComponent/MyService"></reference>
- <reference name="MyListServiceRef" target="MyServiceInComponent/MyListService"></reference>
- </component>
-
- <component name="MyServiceInComponent">
- <implementation.java class="org.apache.tuscany.sca.test.spec.impl.MyServiceImpl"/>
- <property name="location">CARY</property>
- <property name="year">2007</property>
- </component>
-
-</composite>