From ca1fc48f5c3a5a8a86151eab4e8fdfd676217352 Mon Sep 17 00:00:00 2001 From: nash Date: Wed, 19 May 2010 22:18:03 +0000 Subject: Merge revision r946387 from 1.0 release branch git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@946463 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/resources/build-launchers.xml | 2 +- .../travelsample/launchers/usingsca/build.xml | 2 +- .../travelsample/launchers/usingsca/pom.xml | 2 +- .../src/main/java/scatours/UsingLauncher.java | 208 --------------------- .../src/main/java/scatours/UsingSCALauncher.java | 208 +++++++++++++++++++++ .../src/test/java/scatours/UsingSCATestCase.java | 42 +++++ .../src/test/java/scatours/UsingTestCase.java | 42 ----- 7 files changed, 253 insertions(+), 253 deletions(-) delete mode 100644 sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/main/java/scatours/UsingLauncher.java create mode 100644 sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/main/java/scatours/UsingSCALauncher.java create mode 100644 sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/test/java/scatours/UsingSCATestCase.java delete mode 100644 sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/test/java/scatours/UsingTestCase.java (limited to 'sca-java-1.x') diff --git a/sca-java-1.x/trunk/tutorials/travelsample/binaries/src/main/resources/build-launchers.xml b/sca-java-1.x/trunk/tutorials/travelsample/binaries/src/main/resources/build-launchers.xml index 4ceb61291f..4a1ffade39 100644 --- a/sca-java-1.x/trunk/tutorials/travelsample/binaries/src/main/resources/build-launchers.xml +++ b/sca-java-1.x/trunk/tutorials/travelsample/binaries/src/main/resources/build-launchers.xml @@ -327,7 +327,7 @@ - + diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/build.xml b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/build.xml index cbf2877335..0437ba0b45 100644 --- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/build.xml +++ b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/build.xml @@ -25,7 +25,7 @@ - + diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/pom.xml b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/pom.xml index 3de04e9b36..84019c5a2e 100644 --- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/pom.xml +++ b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/pom.xml @@ -128,7 +128,7 @@ ${scatours.selfContained} ../lib/ - scatours.BuildingBlocksLauncher + scatours.UsingSCALauncher diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/main/java/scatours/UsingLauncher.java b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/main/java/scatours/UsingLauncher.java deleted file mode 100644 index bb58e5752c..0000000000 --- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/main/java/scatours/UsingLauncher.java +++ /dev/null @@ -1,208 +0,0 @@ -/* - * 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 scatours; - -//import org.apache.activemq.broker.BrokerService; -import org.apache.tuscany.sca.node.SCAClient; -import org.apache.tuscany.sca.node.SCANode; -import org.apache.tuscany.sca.node.SCANodeFactory; - -import static scatours.launcher.LauncherUtil.locate; - -public class UsingLauncher { - - public static void main(String[] args) throws Exception { - runAirportCodes(); - runBindings(); - runCarAutowire(); - runCarPartner(); - runCarWireElement(); - runComplexPropertyElement(); - runComplexPropertyType(); - runCurrencyConverter(); - runMultiDomain(); - runTripAutowire(); - runTripBooking(); - runTripWireElement(); - } - - private static void runAirportCodes() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/airportcodes-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "AirportCodesClient"); - client.run(); - - node.stop(); - } - - private static void runBindings() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/bookings4-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "Bookings4Client"); - client.run(); - - node.stop(); - } - - private static void runCarAutowire() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/carbookings3-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "CarBookings3Client"); - client.run(); - - node.stop(); - } - - private static void runCarPartner() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/carbookings1-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "CarBookings1Client"); - client.run(); - - node.stop(); - } - - private static void runCarWireElement() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/carbookings2-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "CarBookings2Client"); - client.run(); - - node.stop(); - } - - private static void runComplexPropertyElement() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/orders1-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "Orders1Client"); - client.run(); - - node.stop(); - } - - private static void runComplexPropertyType() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/orders2-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "Orders2Client"); - client.run(); - - node.stop(); - } - - private static void runCurrencyConverter() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/converter-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "ConverterClient"); - client.run(); - - node.stop(); - } - - private static void runMultiDomain() throws Exception { - SCANode hotelsNode = - SCANodeFactory.newInstance().createSCANode("test-clients/hotelsdomain-client.composite", - locate("usingsca")); - SCANode toursNode = - SCANodeFactory.newInstance().createSCANode("test-clients/toursdomain-client.composite", - locate("usingsca")); - - hotelsNode.start(); - toursNode.start(); - - Runnable hotelsClient = ((SCAClient)hotelsNode).getService(Runnable.class, "HotelsDomainClient"); - hotelsClient.run(); - Runnable toursClient = ((SCAClient)toursNode).getService(Runnable.class, "ToursDomainClient"); - toursClient.run(); - - toursNode.stop(); - hotelsNode.stop(); - } - - private static void runTripAutowire() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/bookings3-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "Bookings3Client"); - client.run(); - - node.stop(); - } - - private static void runTripBooking() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/bookings1-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "Bookings1Client"); - client.run(); - - node.stop(); - } - - private static void runTripWireElement() throws Exception { - SCANode node = - SCANodeFactory.newInstance().createSCANode("test-clients/bookings2-client.composite", - locate("usingsca")); - - node.start(); - - Runnable client = ((SCAClient)node).getService(Runnable.class, "Bookings2Client"); - client.run(); - - node.stop(); - } -} diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/main/java/scatours/UsingSCALauncher.java b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/main/java/scatours/UsingSCALauncher.java new file mode 100644 index 0000000000..2c0f817e84 --- /dev/null +++ b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/main/java/scatours/UsingSCALauncher.java @@ -0,0 +1,208 @@ +/* + * 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 scatours; + +//import org.apache.activemq.broker.BrokerService; +import org.apache.tuscany.sca.node.SCAClient; +import org.apache.tuscany.sca.node.SCANode; +import org.apache.tuscany.sca.node.SCANodeFactory; + +import static scatours.launcher.LauncherUtil.locate; + +public class UsingSCALauncher { + + public static void main(String[] args) throws Exception { + runAirportCodes(); + runBindings(); + runCarAutowire(); + runCarPartner(); + runCarWireElement(); + runComplexPropertyElement(); + runComplexPropertyType(); + runCurrencyConverter(); + runMultiDomain(); + runTripAutowire(); + runTripBooking(); + runTripWireElement(); + } + + private static void runAirportCodes() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/airportcodes-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "AirportCodesClient"); + client.run(); + + node.stop(); + } + + private static void runBindings() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/bookings4-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "Bookings4Client"); + client.run(); + + node.stop(); + } + + private static void runCarAutowire() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/carbookings3-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "CarBookings3Client"); + client.run(); + + node.stop(); + } + + private static void runCarPartner() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/carbookings1-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "CarBookings1Client"); + client.run(); + + node.stop(); + } + + private static void runCarWireElement() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/carbookings2-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "CarBookings2Client"); + client.run(); + + node.stop(); + } + + private static void runComplexPropertyElement() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/orders1-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "Orders1Client"); + client.run(); + + node.stop(); + } + + private static void runComplexPropertyType() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/orders2-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "Orders2Client"); + client.run(); + + node.stop(); + } + + private static void runCurrencyConverter() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/converter-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "ConverterClient"); + client.run(); + + node.stop(); + } + + private static void runMultiDomain() throws Exception { + SCANode hotelsNode = + SCANodeFactory.newInstance().createSCANode("test-clients/hotelsdomain-client.composite", + locate("usingsca")); + SCANode toursNode = + SCANodeFactory.newInstance().createSCANode("test-clients/toursdomain-client.composite", + locate("usingsca")); + + hotelsNode.start(); + toursNode.start(); + + Runnable hotelsClient = ((SCAClient)hotelsNode).getService(Runnable.class, "HotelsDomainClient"); + hotelsClient.run(); + Runnable toursClient = ((SCAClient)toursNode).getService(Runnable.class, "ToursDomainClient"); + toursClient.run(); + + toursNode.stop(); + hotelsNode.stop(); + } + + private static void runTripAutowire() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/bookings3-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "Bookings3Client"); + client.run(); + + node.stop(); + } + + private static void runTripBooking() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/bookings1-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "Bookings1Client"); + client.run(); + + node.stop(); + } + + private static void runTripWireElement() throws Exception { + SCANode node = + SCANodeFactory.newInstance().createSCANode("test-clients/bookings2-client.composite", + locate("usingsca")); + + node.start(); + + Runnable client = ((SCAClient)node).getService(Runnable.class, "Bookings2Client"); + client.run(); + + node.stop(); + } +} diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/test/java/scatours/UsingSCATestCase.java b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/test/java/scatours/UsingSCATestCase.java new file mode 100644 index 0000000000..7cbbc6bc2d --- /dev/null +++ b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/test/java/scatours/UsingSCATestCase.java @@ -0,0 +1,42 @@ +/* + * 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 scatours; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +/** + * Tests the launcher + */ +public class UsingSCATestCase { + + @Before + public void startServer() throws Exception { + } + + @Test + public void testLauncher() throws Exception { + UsingSCALauncher.main(null); + } + + @After + public void stopServer() throws Exception { + } +} diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/test/java/scatours/UsingTestCase.java b/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/test/java/scatours/UsingTestCase.java deleted file mode 100644 index cd643b6649..0000000000 --- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/usingsca/src/test/java/scatours/UsingTestCase.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * 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 scatours; - -import org.junit.After; -import org.junit.Before; -import org.junit.Test; - -/** - * Tests the launcher - */ -public class UsingTestCase { - - @Before - public void startServer() throws Exception { - } - - @Test - public void testLauncher() throws Exception { - UsingLauncher.main(null); - } - - @After - public void stopServer() throws Exception { - } -} -- cgit v1.2.3