From 98eec492c08e491401841dd33e8392b41c1e6660 Mon Sep 17 00:00:00 2001 From: nash Date: Thu, 10 Jun 2010 20:27:31 +0000 Subject: Copy travelsample-1.0-RC3 tag as travelsample-1.0 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@953445 13f79535-47bb-0310-9956-ffa450edef68 --- .../contributions/introducing-tours/build.xml | 22 ++++++++++ .../contributions/introducing-tours/pom.xml | 42 +++++++++++++++++++ .../src/main/java/com/goodvaluetrips/Trips.java | 26 ++++++++++++ .../main/java/com/tuscanyscatours/Bookings.java | 26 ++++++++++++ .../main/java/com/tuscanyscatours/Checkout.java | 28 +++++++++++++ .../src/main/java/com/tuscanyscatours/Updates.java | 26 ++++++++++++ .../com/tuscanyscatours/impl/ShoppingCartImpl.java | 49 ++++++++++++++++++++++ .../com/tuscanyscatours/impl/TripBookingImpl.java | 39 +++++++++++++++++ .../main/resources/META-INF/sca-contribution.xml | 24 +++++++++++ .../src/main/resources/tours.composite | 46 ++++++++++++++++++++ 10 files changed, 328 insertions(+) create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/build.xml create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/pom.xml create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/goodvaluetrips/Trips.java create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Bookings.java create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Checkout.java create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Updates.java create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/impl/ShoppingCartImpl.java create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/impl/TripBookingImpl.java create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/resources/tours.composite (limited to 'sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours') diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/build.xml b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/build.xml new file mode 100644 index 0000000000..f269f6577b --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/build.xml @@ -0,0 +1,22 @@ + + + + + diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/pom.xml b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/pom.xml new file mode 100644 index 0000000000..e3647bee6a --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/pom.xml @@ -0,0 +1,42 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + scatours + 1.0 + ../../pom.xml + + scatours-contribution-introducing-tours + Apache Tuscany SCA Tours Introducing Tours Contribution + + + + org.apache.tuscany.sca + tuscany-sca-api + ${tuscany.version} + + + + + ${artifactId} + + diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/goodvaluetrips/Trips.java b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/goodvaluetrips/Trips.java new file mode 100644 index 0000000000..365a210368 --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/goodvaluetrips/Trips.java @@ -0,0 +1,26 @@ +/* + * 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 com.goodvaluetrips; + +import org.osoa.sca.annotations.Remotable; + +@Remotable +public interface Trips { + String checkAvailability(String trip, int people); +} diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Bookings.java b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Bookings.java new file mode 100644 index 0000000000..9d54d46bb6 --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Bookings.java @@ -0,0 +1,26 @@ +/* + * 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 com.tuscanyscatours; + +import org.osoa.sca.annotations.Remotable; + +@Remotable +public interface Bookings { + String newBooking(String trip, int people); +} diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Checkout.java b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Checkout.java new file mode 100644 index 0000000000..29c84d2bc0 --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Checkout.java @@ -0,0 +1,28 @@ +/* + * 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 com.tuscanyscatours; + +import java.math.BigDecimal; + +import org.osoa.sca.annotations.Remotable; + +@Remotable +public interface Checkout { + void makePayment(BigDecimal amount, String cardInfo); +} diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Updates.java b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Updates.java new file mode 100644 index 0000000000..e33b0399cb --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/Updates.java @@ -0,0 +1,26 @@ +/* + * 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 com.tuscanyscatours; + +import org.osoa.sca.annotations.Remotable; + +@Remotable +public interface Updates { + void addTrip(String resCode); +} diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/impl/ShoppingCartImpl.java b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/impl/ShoppingCartImpl.java new file mode 100644 index 0000000000..629ea7b5ec --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/impl/ShoppingCartImpl.java @@ -0,0 +1,49 @@ +/* + * 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 com.tuscanyscatours.impl; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; + +import com.tuscanyscatours.Checkout; +import com.tuscanyscatours.Updates; + +public class ShoppingCartImpl implements Checkout, Updates { + private static List bookedTrips = new ArrayList(); + + protected String currency = "USD"; + + public void makePayment(BigDecimal amount, String cardInfo) { + System.out.print("Charged " + currency + " " + amount + + " to card " + + cardInfo + + " for " + + (bookedTrips.size() > 1 ? "trips" : "trip")); + for (String trip : bookedTrips) { + System.out.print(" " + trip); + } + System.out.println(); + bookedTrips.clear(); + } + + public void addTrip(String resCode) { + bookedTrips.add(resCode); + } +} diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/impl/TripBookingImpl.java b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/impl/TripBookingImpl.java new file mode 100644 index 0000000000..f2884f87c5 --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/java/com/tuscanyscatours/impl/TripBookingImpl.java @@ -0,0 +1,39 @@ +/* + * 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 com.tuscanyscatours.impl; + +import org.osoa.sca.annotations.Reference; + +import com.goodvaluetrips.Trips; +import com.tuscanyscatours.Bookings; +import com.tuscanyscatours.Updates; + +public class TripBookingImpl implements Bookings { + @Reference + protected Trips mytrips; + + @Reference + protected Updates cart; + + public String newBooking(String trip, int people) { + String resCode = mytrips.checkAvailability(trip, people); + cart.addTrip(resCode); + return "GV" + resCode; + } +} diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/resources/META-INF/sca-contribution.xml b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..5f76588dad --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + + diff --git a/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/resources/tours.composite b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/resources/tours.composite new file mode 100644 index 0000000000..6d47793aa4 --- /dev/null +++ b/sca-java-1.x/tags/travelsample-1.0/contributions/introducing-tours/src/main/resources/tours.composite @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3