jobhostwssei.java

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

JAVA
62
字号
package jwsgrid.jobhost.ws;/** * This is the service endpoint interface for the JobHostWSweb service. * Created 28-Apr-2005 9:30:36 AM * @author sean */public interface JobHostWSSEI extends java.rmi.Remote {    /**     * Web service operation     */    public String submitJob(java.lang.String ownerId, java.lang.String xmlJobDescrBundle, int jobDescrIndex, javax.activation.DataHandler jobZippedData) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public void stopJob(java.lang.String ownerId, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public String getJobStatus(java.lang.String ownerId, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public String getJobStatus(java.lang.String ownerId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public javax.activation.DataHandler getJobOutputFile(java.lang.String ownerId, java.lang.String jobId, java.lang.String filePath) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public javax.activation.DataHandler getJobOutputFiles(java.lang.String ownerId, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public long ping() throws java.rmi.RemoteException;    /**     * Web service operation     */    public void startJob(java.lang.String jobOwner, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public void destroyJob(java.lang.String jobOwner, java.lang.String jobId) throws Exception, java.rmi.RemoteException;    /**     * Web service operation     */    public String getDynamicInfo() throws Exception, java.rmi.RemoteException;    }

⌨️ 快捷键说明

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