Subversion Repositories XServices

Rev

Rev 69 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 69 Rev 70
Line 17... Line 17...
17
package net.brutex.xservices.ws;
17
package net.brutex.xservices.ws;
Line 18... Line 18...
18
 
18
 
19
import javax.jws.WebMethod;
19
import javax.jws.WebMethod;
20
import javax.jws.WebParam;
20
import javax.jws.WebParam;
-
 
21
import javax.jws.WebService;
Line 21... Line 22...
21
import javax.jws.WebService;
22
import javax.xml.bind.annotation.XmlElement;
22
 
23
 
23
import net.brutex.xservices.types.HostConnection;
24
import net.brutex.xservices.types.HostConnection;
Line 24... Line 25...
24
import net.brutex.xservices.types.ReturnCode;
25
import net.brutex.xservices.types.ReturnCode;
25
import net.brutex.xservices.util.BrutexNamespaces;
26
import net.brutex.xservices.util.BrutexNamespaces;
-
 
27
 
26
 
28
/**
27
/**
29
 * Task execution web service
28
 * Task execution web service
30
 * 
29
 * @author Brian Rosenberger
31
 * @author Brian Rosenberger
30
 * @since 0.1.0
32
 * @since 0.1.0
Line 128... Line 130...
128
			@WebParam(name = "host") HostConnection host,
130
			@WebParam(name = "host") HostConnection host,
129
			@WebParam(name = "prompt") String prompt,
131
			@WebParam(name = "prompt") String prompt,
130
			@WebParam(name = "command") String cmd,
132
			@WebParam(name = "command") String cmd,
131
			@WebParam(name = "expect") String expect,
133
			@WebParam(name = "expect") String expect,
132
			@WebParam(name = "timeout") long timeout);
134
			@WebParam(name = "timeout") long timeout);
-
 
135
	
-
 
136
	/**
-
 
137
	 * @param script
-
 
138
	 * @throws XServicesFault
-
 
139
	 */
-
 
140
	@WebMethod(operationName = "runJavaScript")
-
 
141
	public abstract void runJScript(
-
 
142
			@WebParam(name = "script") @XmlElement(required=true) String script) throws XServicesFault;
-
 
143
	
Line 133... Line 144...
133
 
144
 
134
}
145
}