1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.api.document;
17
18 import org.kuali.rice.core.api.exception.RiceIllegalArgumentException;
19 import org.kuali.rice.kew.api.KewApiConstants;
20
21 import javax.jws.WebMethod;
22 import javax.jws.WebParam;
23 import javax.jws.WebService;
24 import javax.jws.soap.SOAPBinding;
25
26
27
28
29
30
31
32
33 @WebService(name = "documentProcessingQueue", targetNamespace = KewApiConstants.Namespaces.KEW_NAMESPACE_2_0)
34 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
35 public interface DocumentProcessingQueue {
36
37 @WebMethod(operationName = "process")
38 void process(@WebParam(name = "documentId") String documentId) throws RiceIllegalArgumentException;
39
40 @WebMethod(operationName = "processWithOptions")
41 void processWithOptions(@WebParam(name = "documentId") String documentId, @WebParam(name = "options") DocumentProcessingOptions options)
42 throws RiceIllegalArgumentException;
43
44 }