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

Java编程

开发平台:

Java

  1. package bible.ejb.session.example1;
  2. import javax.ejb.*;
  3. /**
  4.  * Interface RequestDataManagerLocal
  5.  *
  6.  *
  7.  * @author
  8.  * @version %I%, %G%
  9.  */
  10. public interface RequestDataManagerLocal extends EJBLocalObject {
  11.   /**
  12.    * Returns research data about a particular security.
  13.    */
  14.   public String getResearchData(String symbol);
  15.   /**
  16.    * Appends research data about a particular security to this buffer.
  17.    */
  18.   public void appendResearchData(StringBuffer buffer, String symbol);
  19. }
  20. /*--- Formatted in Bible Style on Thu, Sep 6, '01 ---*/
  21. /*------ Formatted by Jindent 3.24 Gold 1.02 --- http://www.jindent.de ------*/