summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/contributions/fullapp-shoppingcart/src/main/resources/scatours.composite
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sandbox/travelsample/contributions/fullapp-shoppingcart/src/main/resources/scatours.composite (renamed from sandbox/travelsample/contributions/fullapp-shoppingcart-contribution/src/main/resources/scatours.composite)14
1 files changed, 6 insertions, 8 deletions
diff --git a/sandbox/travelsample/contributions/fullapp-shoppingcart-contribution/src/main/resources/scatours.composite b/sandbox/travelsample/contributions/fullapp-shoppingcart/src/main/resources/scatours.composite
index a1d06880aa..327145df71 100644
--- a/sandbox/travelsample/contributions/fullapp-shoppingcart-contribution/src/main/resources/scatours.composite
+++ b/sandbox/travelsample/contributions/fullapp-shoppingcart/src/main/resources/scatours.composite
@@ -18,22 +18,20 @@
* under the License.
-->
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
- targetNamespace="http://scatours"
- xmlns:scatours="http://scatours"
- xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0"
+ targetNamespace="http://tuscanyscatours.com/"
name="shoppingcart">
- <component name="ShoppingCartComponent">
- <implementation.java class="scatours.shoppingcart.ShoppingCartImpl"/>
+ <component name="ShoppingCart">
+ <implementation.java class="com.tuscanyscatours.shoppingcart.impl.ShoppingCartImpl"/>
<service name="ShoppingCart"/>
- <reference name="cartStore" target="CartStoreComponent/CartStore"/>
+ <reference name="cartStore" target="CartStore"/>
<reference name="payment">
<binding.ws uri="http://localhost:8081/Payment" />
</reference>
</component>
- <component name="CartStoreComponent">
- <implementation.java class="scatours.shoppingcart.CartStoreImpl"/>
+ <component name="CartStore">
+ <implementation.java class="com.tuscanyscatours.shoppingcart.impl.CartStoreImpl"/>
<service name="CartStore"/>
</component>