KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > converter > ConverterRemoteBusiness


1
2 package converter;
3
4 import java.math.BigDecimal JavaDoc;
5
6
7 /**
8  * This is the business interface for Converter enterprise bean.
9  */

10 public interface ConverterRemoteBusiness {
11     BigDecimal JavaDoc yenToEuro(java.math.BigDecimal JavaDoc yen) throws java.rmi.RemoteException JavaDoc;
12
13     BigDecimal JavaDoc dollarToYen(java.math.BigDecimal JavaDoc dollars) throws java.rmi.RemoteException JavaDoc;
14     
15 }
16
Popular Tags