summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/sca/branches/tb7/archetypes/quickstart/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.composite
blob: cd443aed1692356318f28845d63829f19c3ae768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
           xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0"
           targetNamespace="http://${package}"
           name=">${artifactId}">

    <component name="${artifactId}WebComponent">
        <implementation.web web-uri=""/>
        <reference name="service" target="HelloworldComponent"/>
    </component>

    <component name="HelloworldComponent">
        <implementation.java class="${package}.HelloworldImpl"/>
    </component>

</composite>