summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/clients
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
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')
-rw-r--r--sandbox/travelsample/clients/currency-converter-rmi-client/pom.xml43
-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
-rw-r--r--sandbox/travelsample/clients/pom.xml1
4 files changed, 114 insertions, 0 deletions
diff --git a/sandbox/travelsample/clients/currency-converter-rmi-client/pom.xml b/sandbox/travelsample/clients/currency-converter-rmi-client/pom.xml
new file mode 100644
index 0000000000..de234e2fc1
--- /dev/null
+++ b/sandbox/travelsample/clients/currency-converter-rmi-client/pom.xml
@@ -0,0 +1,43 @@
+<?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>tuscany-sca</artifactId>
+ <version>1.5-SNAPSHOT</version>
+ <!--relativePath>../../pom.xml</relativePath-->
+ </parent>
+ <artifactId>currency-converter-rmi-client</artifactId>
+ <name>Apache Tuscany SCA Tours Currency Converter RMI Client</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <finalName>${artifactId}</finalName>
+ </build>
+</project>
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);
+
+}
diff --git a/sandbox/travelsample/clients/pom.xml b/sandbox/travelsample/clients/pom.xml
index 50603b4846..a1a574c55a 100644
--- a/sandbox/travelsample/clients/pom.xml
+++ b/sandbox/travelsample/clients/pom.xml
@@ -36,6 +36,7 @@
<activeByDefault>true</activeByDefault>
</activation>
<modules>
+ <module>currency-converter-rmi-client</modue>
<module>currency-converter-ws-jaxws-client</module>
</modules>
</profile>