1 4 package com.openedit.store.orders; 5 6 import org.openedit.money.Fraction; 7 8 12 public class CurrencyConvert 13 { 14 public Fraction getMultiplier(String inSourceCountry, String inDesctination) throws Exception  15 { 16 String UrlString = "http://services.xmethods.net:9090/soap"; 17 String nameSpaceUri = "urn:xmethods-CurrencyExchange"; 18 19 33 return null; 34 } 35 36 public interface ExchangeRate 37 { 38 39 float getRate(String inSource, String inDest); 40 } 41 42 } 43 | Popular Tags |