HelloInterface.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:0k
源码类别:
Java编程
开发平台:
Java
- package bible.rmi.example1;
- import weblogic.rmi.*;
- import java.rmi.*;
- /**
- * HelloInterface is a remote interface for saying hello.
- */
- public interface HelloInterface extends weblogic.rmi.Remote {
- /**
- * Responds with a greeting when client's say hello.
- * @returns A greeting from the implementing server.
- * @throws RemoteException
- */
- public String sayHello() throws java.rmi.RemoteException;
- }