summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/launchers/currency-converter-ws-launcher/src/main/java/scatours/LaunchNode.java
diff options
context:
space:
mode:
authormcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-05-20 08:46:47 +0000
committermcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-05-20 08:46:47 +0000
commit60bd27403420d38a3b58dfa3ac8693dd42fb1558 (patch)
tree2aeb124a15e932db5ad9ef24fdc6c55855c84b1c /sandbox/travelsample/launchers/currency-converter-ws-launcher/src/main/java/scatours/LaunchNode.java
parent062b3b1f2f5c76d08fe8ed6b3e43632576e669f9 (diff)
Renamed the LaunchNode class to be more descriptive
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@776616 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/launchers/currency-converter-ws-launcher/src/main/java/scatours/LaunchNode.java')
-rw-r--r--sandbox/travelsample/launchers/currency-converter-ws-launcher/src/main/java/scatours/LaunchNode.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/sandbox/travelsample/launchers/currency-converter-ws-launcher/src/main/java/scatours/LaunchNode.java b/sandbox/travelsample/launchers/currency-converter-ws-launcher/src/main/java/scatours/LaunchNode.java
deleted file mode 100644
index 5a2bae53c0..0000000000
--- a/sandbox/travelsample/launchers/currency-converter-ws-launcher/src/main/java/scatours/LaunchNode.java
+++ /dev/null
@@ -1,56 +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.tuscany.sca.node.SCAClient;
-import org.apache.tuscany.sca.node.SCAContribution;
-import org.apache.tuscany.sca.node.SCANode;
-import org.apache.tuscany.sca.node.SCANodeFactory;
-
-public class LaunchNode {
-
- public static void main(String[] args) throws Exception {
- SCAContribution currencyWSContribution =
- new SCAContribution("currency-ws",
- "../../contributions/currency-contribution-ws/target/classes");
- SCAContribution currencyContribution =
- new SCAContribution("currency",
- "../../contributions/currency-contribution/target/classes");
-
- SCANode node = SCANodeFactory.newInstance().createSCANode(
- "currency-converter-ws.composite",currencyContribution, currencyWSContribution);
- node.start();
-
- System.out.println("Quick currency converter test");
- CurrencyConverter converter = ((SCAClient)node).getService(
- CurrencyConverter.class, "CurrencyConverter");
- System.out.println("USD -> GBP = "
- + converter.getExchangeRate("USD", "GBP"));
- System.out.println("100 USD = "
- + converter.convert("USD", "GBP", 100) + "GBP");
-
- System.out.println("Node started - Press enter to shutdown.");
- System.in.read();
-
-
-
- node.stop();
- }
-}