diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-21 10:38:07 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-21 10:38:07 +0000 |
commit | e9e5a7d96999a6d04c18f9c2e66fa6b9da72bd07 (patch) | |
tree | a937abe56925a6ebb3cf546b71d4bf5e53463a49 /sandbox/travelsample/contributions/buildingblocks/src/main/resources/tours.composite | |
parent | 4ff6f4fdd56ae6ef5085fbdd73525526fbc93139 (diff) |
Add new contribution buildingblocks
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@901645 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/contributions/buildingblocks/src/main/resources/tours.composite')
-rw-r--r-- | sandbox/travelsample/contributions/buildingblocks/src/main/resources/tours.composite | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sandbox/travelsample/contributions/buildingblocks/src/main/resources/tours.composite b/sandbox/travelsample/contributions/buildingblocks/src/main/resources/tours.composite new file mode 100644 index 0000000000..b66d2344cd --- /dev/null +++ b/sandbox/travelsample/contributions/buildingblocks/src/main/resources/tours.composite @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://bb.tuscanyscatours.com/"
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
+ name="Tours">
+
+ <service name="BookTrip" promote="TripBooking/Bookings" />
+ <service name="Checkout" promote="ShoppingCart/Checkout" />
+ <reference name="trips" promote="TripBooking/mytrips" />
+ <property name="currency" type="xs:string">USD</property>
+
+ <component name="TripBooking">
+ <implementation.java class="com.tuscanyscatours.impl.TripBookingImpl" />
+ <service name="Bookings" />
+ <reference name="mytrips" />
+ <reference name="cart" target="ShoppingCart/Updates" />
+ </component>
+
+ <component name="ShoppingCart">
+ <implementation.java class="com.tuscanyscatours.impl.ShoppingCartImpl"/>
+ <service name="Updates" />
+ <service name="Checkout" />
+ <property name="currency" source="$currency"/>
+ </component>
+</composite>
|