resourcemanagerwssei.java

来自「这是一个基于计算网格的web service。它用java编写。一旦安装完成」· Java 代码 · 共 45 行

JAVA
45
字号
package jwsgrid.resourcemanager.ws;import jwsgrid.resourcemanager.ResourceManager;import java.lang.String;/** * This is the service endpoint interface for the ResourceManagerWSweb service. * Created 27-Apr-2005 6:19:50 PM * @author sean */public interface ResourceManagerWSSEI extends java.rmi.Remote {    /**     * Web service operation     */    public void registerJobHost(            String wsAddr,            String clusterId,            String xmlStaticInfo,             String xmlDynamicInfo )     throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public boolean unregisterJobHost( String wsAddr, String clusterId )     throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public String searchJobHosts( String xmlJobHostConstraints )     throws  ConstraintMatchException,             ConstraintDistanceException,            Exception,             java.rmi.RemoteException;    /**     * Web service operation     */    public long ping() throws java.rmi.RemoteException;  }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?