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

    <service name="Service1" promote="ComponentB/Service2">
        <!-- bindings and/or interfaces may or may not be specified explicitly here -->
        <binding.ws />
    </service>

    <component name="ComponentB">
        <implementation.composite name="tns:CompositeC" />
        <service name="Service2">
            <!-- bindings and/or interfaces may or may not be specified explicitly here -->
        </service>
        <service name="Service2a">
            <!-- bindings and/or interfaces may or may not be specified explicitly here -->
        </service>
    </component>

</composite>