summaryrefslogtreecommitdiffstats
path: root/sandbox/lresende/sca/samples/store-appengine-webapp/src/services/CurrencyConverter.java
blob: 07a152a276f0db9db4c9fb43532e3620782f5af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package services;

import org.oasisopen.sca.annotation.Remotable;

@Remotable
public interface CurrencyConverter {
    public double getConversion(String fromCurrenycCode, 
                                String toCurrencyCode, 
                                double amount);

    public String getCurrencySymbol(String currencyCode);
}