CalculatorRemote.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package bible.webservices.rpc;
  2. import java.rmi.*;
  3. import javax.ejb.*;
  4. /**
  5.  * The Remote Interface for the Calculator Statelss Session Bean.
  6.  */
  7. public interface CalculatorRemote extends EJBObject {
  8.   /**
  9.    * Returns the sum of two long primitives.
  10.    */
  11.   public long add(long amount1, long amount2) throws RemoteException;
  12.   /**
  13.    * Returns the difference of two long primitives.
  14.    */
  15.   public long subtract(long amount1, long amount2) throws RemoteException;
  16.   /**
  17.    * Returns the product of two double primitives.
  18.    */
  19.   public double multiply(double amount, double factor) throws RemoteException;
  20.   /**
  21.    * Returns the quotient of two double primitives.
  22.    */
  23.   public double divide(double amount, double divisor) throws RemoteException;
  24. }