diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-07-26 11:34:01 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-07-26 11:34:01 +0000 |
commit | 165810a5671c6cd294c16ced781cfe82d0000275 (patch) | |
tree | ba090691b40a78016abbd3743d798363ab996a0b /sandbox/travelsample/contributions/payment-groovy-contribution/src/test/java/payment/client | |
parent | 36d5534d1a50e837f15e4d231365095dd9b067fe (diff) |
Add a groovy version of the payment component
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@797909 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/contributions/payment-groovy-contribution/src/test/java/payment/client')
-rw-r--r-- | sandbox/travelsample/contributions/payment-groovy-contribution/src/test/java/payment/client/PaymentClientImpl.java | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sandbox/travelsample/contributions/payment-groovy-contribution/src/test/java/payment/client/PaymentClientImpl.java b/sandbox/travelsample/contributions/payment-groovy-contribution/src/test/java/payment/client/PaymentClientImpl.java new file mode 100644 index 0000000000..556a699ad8 --- /dev/null +++ b/sandbox/travelsample/contributions/payment-groovy-contribution/src/test/java/payment/client/PaymentClientImpl.java @@ -0,0 +1,37 @@ +/* + * 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. + */ + +package payment.client; + +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Service; + +import payment.Payment; + +@Service(Payment.class) +public class PaymentClientImpl implements Payment { + @Reference + protected Payment payment; + + public String makePaymentMember(String customerId, float amount) { + // Delegate the external web service + return payment.makePaymentMember(customerId, amount); + } + +} |