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

Java编程

开发平台:

Java

  1. package bible.rmi.example4;
  2. import java.rmi.*;
  3. import javax.ejb.*;
  4. /**
  5.  * Remote interface for the ExecuteTrade Session EJB.
  6.  */
  7. public interface ExecuteTradeRemote extends EJBObject {
  8.   /**
  9.    * Executes an order and alerts the client of the execution.
  10.    * @param order Order to be executed.
  11.    * @param alert Client to be alerted upon execution.
  12.    * @throws RemoteException
  13.    */
  14.   public void executeTrade(Order order, ExecutionAlert alert)
  15.     throws RemoteException;
  16. }