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

Java编程

开发平台:

Java

  1. package bible.rmi.example1;
  2. import weblogic.rmi.*;
  3. import java.rmi.*;
  4. /**
  5.  * HelloInterface is a remote interface for saying hello.
  6.  */
  7. public interface HelloInterface extends weblogic.rmi.Remote {
  8.   /**
  9.    * Responds with a greeting when client's say hello.
  10.    * @returns A greeting from the implementing server.
  11.    * @throws RemoteException
  12.    */
  13.   public String sayHello() throws java.rmi.RemoteException;
  14. }