summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/contributions/payment-java/src/main/resources/payment.composite
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sandbox/travelsample/contributions/payment-java/src/main/resources/payment.composite (renamed from sandbox/travelsample/contributions/payment-java-contribution/src/main/resources/payment.composite)20
1 files changed, 9 insertions, 11 deletions
diff --git a/sandbox/travelsample/contributions/payment-java-contribution/src/main/resources/payment.composite b/sandbox/travelsample/contributions/payment-java/src/main/resources/payment.composite
index 45c802ed31..69160e24f8 100644
--- a/sandbox/travelsample/contributions/payment-java-contribution/src/main/resources/payment.composite
+++ b/sandbox/travelsample/contributions/payment-java/src/main/resources/payment.composite
@@ -18,30 +18,28 @@
* under the License.
-->
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
- targetNamespace="http://scatours"
- xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0"
- xmlns:c="http://scatours"
+ targetNamespace="http://tuscanyscatours.com/"
name="payment">
- <component name="PaymentComponent">
- <implementation.java class="payment.PaymentImpl" />
+ <component name="Payment">
+ <implementation.java class="com.tuscanyscatours.payment.impl.PaymentImpl" />
<service name="Payment">
<binding.ws uri="http://localhost:8081/Payment"/>
</service>
- <reference name="customerRegistry" target="CustomerRegistryComponent"/>
+ <reference name="customerRegistry" target="CustomerRegistry"/>
<reference name="creditCardPayment">
<binding.ws uri="http://localhost:8082/CreditCardPayment"/>
</reference>
- <reference name="emailGateway" target="EmailGatewayComponent"/>
+ <reference name="emailGateway" target="EmailGateway"/>
<property name="transactionFee">0.02</property>
</component>
- <component name="CustomerRegistryComponent">
- <implementation.java class="scatours.customer.CustomerRegistryImpl" />
+ <component name="CustomerRegistry">
+ <implementation.java class="com.tuscanyscatours.customer.impl.CustomerRegistryImpl" />
</component>
- <component name="EmailGatewayComponent">
- <implementation.java class="scatours.emailgateway.EmailGatewayImpl" />
+ <component name="EmailGateway">
+ <implementation.java class="com.tuscanyscatours.emailgateway.impl.EmailGatewayImpl" />
</component>
</composite> \ No newline at end of file