summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/contributions/fullapp-frontend/src/main/resources/scatours.composite
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2009-08-27 01:07:30 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2009-08-27 01:07:30 +0000
commit47d7bf03613dfd6a2db848df57306c0c2b8c2402 (patch)
tree47d5bc9c7e565ffc5f1a653c2ba2d3cc2df1a940 /sandbox/travelsample/contributions/fullapp-frontend/src/main/resources/scatours.composite
parente55e032a7fbf42b17461e4fa4ad729b8f58a0f60 (diff)
Apply the new naming conventions to the fullapp contributions and launchers
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@808241 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/travelsample/contributions/fullapp-frontend/src/main/resources/scatours.composite (renamed from sandbox/travelsample/contributions/fullapp-frontend-contribution/src/main/resources/scatours.composite)28
1 files changed, 13 insertions, 15 deletions
diff --git a/sandbox/travelsample/contributions/fullapp-frontend-contribution/src/main/resources/scatours.composite b/sandbox/travelsample/contributions/fullapp-frontend/src/main/resources/scatours.composite
index 403882ce26..a64f9f160a 100644
--- a/sandbox/travelsample/contributions/fullapp-frontend-contribution/src/main/resources/scatours.composite
+++ b/sandbox/travelsample/contributions/fullapp-frontend/src/main/resources/scatours.composite
@@ -18,13 +18,11 @@
* 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="frontend">
- <component name="TravelCatalogComponent">
- <implementation.java class="scatours.travelcatalog.TravelCatalogImpl"/>
+ <component name="TravelCatalog">
+ <implementation.java class="com.tuscanyscatours.travelcatalog.impl.TravelCatalogImpl"/>
<service name="TravelCatalogSearch"/>
<reference name="hotelSearch">
<binding.ws uri="http://localhost:8086/Hotel/Search"/>
@@ -34,8 +32,8 @@
</callback>
</reference>
<reference name="flightSearch">
- <interface.java interface="scatours.common.Search"
- callbackInterface="scatours.common.SearchCallback"/>
+ <interface.java interface="com.tuscanyscatours.common.Search"
+ callbackInterface="com.tuscanyscatours.common.SearchCallback"/>
<binding.ws uri="http://localhost:8086/Flight/Search"/>
<callback>
<binding.ws name="callback"
@@ -56,19 +54,19 @@
uri="http://localhost:8084/Trip/SearchCallback"/>
</callback>
</reference>
- <reference name="currencyConverter" target="CurrencyConverterComponent">
+ <reference name="currencyConverter" target="CurrencyConverter">
</reference>
<property name="quoteCurrencyCode">GBP</property>
</component>
- <component name="TripBookingComponent">
- <implementation.java class="scatours.tripbooking.TripBookingImpl"/>
+ <component name="TripBooking">
+ <implementation.java class="com.tuscanyscatours.tripbooking.impl.TripBookingImpl"/>
<service name="TripBooking"/>
- <reference name="hotelBook" target="HotelComponent/Book"/>
- <reference name="flightBook" target="TripComponent/Book"/>
- <reference name="carBook" target="CarComponent/Book"/>
- <reference name="tripBook" target="TripComponent/Book"/>
- <reference name="shoppingCart" target="ShoppingCartComponent/ShoppingCart"/>
+ <reference name="hotelBook" target="Hotel/Book"/>
+ <reference name="flightBook" target="Trip/Book"/>
+ <reference name="carBook" target="Car/Book"/>
+ <reference name="tripBook" target="Trip/Book"/>
+ <reference name="shoppingCart" target="ShoppingCart"/>
</component>
</composite>