📄 jobhostwssei.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -