summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/clients/currency-converter-rmi-client/src/main
diff options
context:
space:
mode:
authormcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-05-19 14:53:11 +0000
committermcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-05-19 14:53:11 +0000
commitf0eea03244c1daca43abf7d77cf679931b7ff212 (patch)
treeac3da794747d35dda94bf797cf6ebf687d59fa2f /sandbox/travelsample/clients/currency-converter-rmi-client/src/main
parent56962bd0f2027fe89047905b9b7e2e24131b7178 (diff)
Initial commit of an RMI client that can invoke the currency converter RMI service
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@776346 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/clients/currency-converter-rmi-client/src/main')
-rw-r--r--sandbox/travelsample/clients/currency-converter-rmi-client/src/main/java/scatours/CurrencyConverterRMIClient.java37
-rw-r--r--sandbox/travelsample/clients/currency-converter-rmi-client/src/main/java/scatours/currencyconverter/CurrencyConverter.java33
2 files changed, 70 insertions, 0 deletions
diff --git a/sandbox/travelsample/clients/currency-converter-rmi-client/src/main/java/scatours/CurrencyConverterRMIClient.java b/sandbox/travelsample/clients/currency-converter-rmi-client/src/main/java/scatours/CurrencyConverterRMIClient.java
new file mode 100644
index 0000000000..18c255e261
--- /dev/null
+++ b/sandbox/travelsample/clients/currency-converter-rmi-client/src/main/java/scatours/CurrencyConverterRMIClient.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 scatours;
+
+import java.rmi.registry.LocateRegistry;
+import java.rmi.registry.Registry;
+
+import scatours.currencyconverter.CurrencyConverter;
+
+
+public class CurrencyConverterRMIClient {
+
+ public static void main(String[] args) throws Exception {
+ Registry registry = LocateRegistry.getRegistry("localhost", 8099);
+ String name = "CurrencyConverterRMI";
+ CurrencyConverter converter = (CurrencyConverter) registry.lookup(name);
+
+ System.out.println("USD -> GBP = " + converter.getExchangeRate("USD", "GBP"));
+ System.out.println("100 USD = " + converter.convert("USD", "GBP", 100.0) + "GBP");
+ }
+}
diff --git a/sandbox/travelsample/clients/currency-converter-rmi-client/src/main/java/scatours/currencyconverter/CurrencyConverter.java b/sandbox/travelsample/clients/currency-converter-rmi-client/src/main/java/scatours/currencyconverter/CurrencyConverter.java
new file mode 100644
index 0000000000..defca47ee5
--- /dev/null
+++ b/sandbox/travelsample/clients/currency-converter-rmi-client/src/main/java/scatours/currencyconverter/CurrencyConverter.java
@@ -0,0 +1,33 @@
+/*
+ * 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.currencyconverter;
+
+/**
+ * The CurrencyConverter service interface
+ */
+public interface CurrencyConverter {
+
+ double getExchangeRate(String fromCurrencyCode,
+ String toCurrencyCode);
+
+ double convert(String fromCurrencyCode,
+ String toCurrencyCode,
+ double amount);
+
+}