1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.rice.kew.api.document.attribute;
18
19 import org.kuali.rice.kew.api.KewApiConstants;
20
21 import javax.jws.WebMethod;
22 import javax.jws.WebParam;
23 import javax.jws.WebResult;
24 import javax.jws.WebService;
25 import javax.jws.soap.SOAPBinding;
26 import javax.xml.bind.annotation.XmlElement;
27
28
29
30
31
32
33 @WebService(name = "documentAttributeIndexingQueueSoap", targetNamespace = KewApiConstants.Namespaces.KEW_NAMESPACE_2_0)
34 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
35 public interface DocumentAttributeIndexingQueue {
36
37 @WebMethod(operationName = "indexDocument")
38 void indexDocument(@WebParam(name = "documentId") String documentId);
39
40 }