package org.omg.lsae; import java.util.*; /** * This is an empty inmplementation that was used to produce WSDL. The * generated WSDL is a part of the LSAE specification, but this Java * implementation is not. * * In order to use this implementation for producing a WSDL with * correct part names, this must be compiled using a -g option: * javac -g org/omg/lsae/AnalysisService_WS_Impl.java */ public class AnalysisService_WS_Impl implements AnalysisService_WS { public String describe() throws LSAEException { return null; } public Map[] getInputSpec() throws LSAEException { return null; } public Map[] getOutputSpec() throws LSAEException { return null; } public Map getAnalysisSpec() throws LSAEException { return null; } public String createJob (Map inputs) throws LSAEException { return null; } public String createAndRun (Map inputs) throws LSAEException { return null; } public String createAndRunNotifiable (Map inputs, String notificationDescriptor) throws LSAEException { return null; } public Map runAndWaitFor (Map inputs) throws LSAEException { return null; } public void appendData (String jobID, Map inputs) throws LSAEException { } public void run (String jobID) throws LSAEException { } public void runNotifiable (String jobID, String notificationDescriptor) throws LSAEException { } public void waitFor (String jobID) throws LSAEException { } public void terminate (String jobID) throws LSAEException { } public Map getResults (String jobID) throws LSAEException { return null; } public Map getSomeResults (String jobID, String[] resultNames) throws LSAEException { return null; } public Object getResultChunk (String jobID, String resultName, int requestedSize) throws LSAEException { return null; } public boolean resetResult (String jobID, String resultName) throws LSAEException { return true; } public String getLastEvent (String jobID) throws LSAEException { return null; } public String getNotificationDescriptor (String jobID) throws LSAEException { return null; } public String getStatus (String jobID) throws LSAEException { return null; } public long getCreated (String jobID) throws LSAEException { return -1; } public long getStarted (String jobID) throws LSAEException { return -1; } public long getEnded (String jobID) throws LSAEException { return -1; } public long getElapsed (String jobID) throws LSAEException { return -1; } public Map getCharacteristics (String jobID) throws LSAEException { return null; } public void destroy (String jobID) throws LSAEException { } }