summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tutorials/travelsample/launchers
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-1.x/trunk/tutorials/travelsample/launchers')
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/launchers/using/build.xml35
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/launchers/using/pom.xml138
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/launchers/using/src/main/java/scatours/UsingLauncher.java208
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/launchers/using/src/main/resources/jndi.properties38
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/launchers/using/src/test/java/scatours/UsingTestCase.java42
5 files changed, 0 insertions, 461 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/build.xml b/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/build.xml
deleted file mode 100644
index 8fb4c92ef2..0000000000
--- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/build.xml
+++ /dev/null
@@ -1,35 +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.
--->
-
-<project name="scatours-launcher-using" default="compile">
- <import file="../../antdefs.xml"/>
- <path id="compile-path">
- <pathelement path="../../util/launcher-common/target/scatours-util-launcher-common.jar"/>
- </path>
-
- <target name="run">
- <java classname="scatours.UsingLauncher" fork="true" failonerror="true">
- <classpath>
- <pathelement location="target/${ant.project.name}.jar"/>
- <path refid="compile-path"/>
- <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
- </classpath>
- </java>
- </target>
-</project>
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/pom.xml b/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/pom.xml
deleted file mode 100644
index 09e7647fc0..0000000000
--- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/pom.xml
+++ /dev/null
@@ -1,138 +0,0 @@
-<?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.
--->
-<project>
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>scatours</artifactId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../../pom.xml</relativePath>
- </parent><version>1.0-SNAPSHOT</version>
- <artifactId>scatours-launcher-using</artifactId>
- <name>Apache Tuscany SCA Tours Using Launcher</name>
-
- <dependencies>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>scatours-util-launcher-common</artifactId>
- <version>${pom.version}</version>
- <scope>provided</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-node-api</artifactId>
- <version>${tuscany.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-all</artifactId>
- <version>5.2.0</version>
- <exclusions>
- <exclusion>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-web-demo</artifactId>
- </exclusion>
- </exclusions>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-node-impl</artifactId>
- <version>${tuscany.version}</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-implementation-java-runtime</artifactId>
- <version>${tuscany.version}</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-binding-ws-axis2</artifactId>
- <version>${tuscany.version}</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-host-jetty</artifactId>
- <version>${tuscany.version}</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-binding-jms-runtime</artifactId>
- <version>${tuscany.version}</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-host-jms-asf</artifactId>
- <version>${tuscany.version}</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-binding-ejb-runtime</artifactId>
- <version>${tuscany.version}</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.5</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <build>
- <finalName>${artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <archive>
- <manifestEntries>
- <Class-Path>../util/scatours-util-launcher-common.jar</Class-Path>
- </manifestEntries>
- <manifest>
- <addClasspath>${scatours.selfContained}</addClasspath>
- <classpathPrefix>../lib/</classpathPrefix>
- <mainClass>scatours.BuildingBlocksLauncher</mainClass>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/src/main/java/scatours/UsingLauncher.java b/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/src/main/java/scatours/UsingLauncher.java
deleted file mode 100644
index 59a2ea427f..0000000000
--- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/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("using"));
-
- 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("using"));
-
- 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("using"));
-
- 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("using"));
-
- 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("using"));
-
- 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("using"));
-
- 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("using"));
-
- 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("using"));
-
- 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("using"));
- SCANode toursNode =
- SCANodeFactory.newInstance().createSCANode("test-clients/toursdomain-client.composite",
- locate("using"));
-
- 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("using"));
-
- 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("using"));
-
- 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("using"));
-
- 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/using/src/main/resources/jndi.properties b/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/src/main/resources/jndi.properties
deleted file mode 100644
index 80236a8e6c..0000000000
--- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/src/main/resources/jndi.properties
+++ /dev/null
@@ -1,38 +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.
-## ---------------------------------------------------------------------------
-
-# START SNIPPET: jndi
-
-java.naming.factory.initial = org.apache.activemq.jndi.ActiveMQInitialContextFactory
-
-# use the following property to configure the default connector
-java.naming.provider.url = vm://localhost?broker.persistent=false
-
-# use the following property to specify the JNDI name the connection factory
-# should appear as.
-#connectionFactoryNames = connectionFactory, queueConnectionFactory, topicConnectionFactry
-connectionFactoryNames = ConnectionFactory
-
-# register some queues in JNDI using the form
-# queue.[jndiName] = [physicalName]
-queue.Bookings = BookingsRequestQueue
-
-# register some topics in JNDI using the form
-# topic.[jndiName] = [physicalName]
-#topic.MyTopic = example.MyTopic
-
-# END SNIPPET: jndi
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/src/test/java/scatours/UsingTestCase.java b/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/src/test/java/scatours/UsingTestCase.java
deleted file mode 100644
index cd643b6649..0000000000
--- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/using/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 {
- }
-}