01: package converter;
02:
03: /**
04: * This is the business interface for Converter enterprise bean.
05: */
06: public interface ConverterRemoteBusiness {
07: java.math.BigDecimal dollarToYen(java.math.BigDecimal dollars)
08: throws java.rmi.RemoteException;
09:
10: java.math.BigDecimal yenToEuro(java.math.BigDecimal yen)
11: throws java.rmi.RemoteException;
12:
13: }
|