summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.4/samples/store-distributed/src/main/java/services/CurrencyConverter.java
diff options
context:
space:
mode:
authorramkumar <ramkumar@13f79535-47bb-0310-9956-ffa450edef68>2008-12-08 07:26:31 +0000
committerramkumar <ramkumar@13f79535-47bb-0310-9956-ffa450edef68>2008-12-08 07:26:31 +0000
commitdd846904298ac4bb546fb00fc716d433188438b8 (patch)
tree02c185951ff0dc6beb9c02afab761337b18b3773 /branches/sca-java-1.4/samples/store-distributed/src/main/java/services/CurrencyConverter.java
parent2f5f5423f5f2a574e00f33fbe3dc3b37b61fa2ac (diff)
Fixes for TUSCANY-2721
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724270 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.4/samples/store-distributed/src/main/java/services/CurrencyConverter.java')
-rw-r--r--branches/sca-java-1.4/samples/store-distributed/src/main/java/services/CurrencyConverter.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/branches/sca-java-1.4/samples/store-distributed/src/main/java/services/CurrencyConverter.java b/branches/sca-java-1.4/samples/store-distributed/src/main/java/services/CurrencyConverter.java
deleted file mode 100644
index e104a0423a..0000000000
--- a/branches/sca-java-1.4/samples/store-distributed/src/main/java/services/CurrencyConverter.java
+++ /dev/null
@@ -1,29 +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 services;
-
-import org.osoa.sca.annotations.Remotable;
-
-@Remotable
-public interface CurrencyConverter {
- public double getConversion(String fromCurrenycCode, String toCurrencyCode, double amount);
-
- public String getCurrencySymbol(String currencyCode);
-}