19,6 → 19,7 |
import javax.jws.WebMethod; |
import javax.jws.WebParam; |
import javax.jws.WebService; |
import javax.xml.bind.annotation.XmlElement; |
|
import net.brutex.xservices.types.HostConnection; |
import net.brutex.xservices.types.ReturnCode; |
26,6 → 27,7 |
|
/** |
* Task execution web service |
* |
* @author Brian Rosenberger |
* @since 0.1.0 |
* |
131,4 → 133,13 |
@WebParam(name = "expect") String expect, |
@WebParam(name = "timeout") long timeout); |
|
/** |
* @param script |
* @throws XServicesFault |
*/ |
@WebMethod(operationName = "runJavaScript") |
public abstract void runJScript( |
@WebParam(name = "script") @XmlElement(required=true) String script) throws XServicesFault; |
|
|
} |