summaryrefslogtreecommitdiffstats
path: root/java/sca/itest/builder/src/main/resources/scenario1/scenario1a.composite
blob: 2379a1ffa869b21e8c2e45a4338d7e0ad31b72a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
        targetNamespace="http://scenario1"
        xmlns:tns="http://scenario1"
        name="CompositeC">

    <service name="Service2" promote="ComponentD/Service3">
        <!-- bindings and/or interfaces may or may not be specified explicitly here -->
    </service>
    <service name="Service2a" promote="ComponentD/Service3a">
        <!-- bindings and/or interfaces may or may not be specified explicitly here -->
    </service>

    <component name="ComponentD">
        <implementation.java class="org.apache.tuscany.sca.itest.builder.ComponentDImpl"/>
        <service name="Service3">
            <!-- bindings and/or interfaces may or may not be specified explicitly here -->
        </service>
        <service name="Service3a">
            <!-- bindings and/or interfaces may or may not be specified explicitly here -->
        </service>
    </component>
</composite>