1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.ksb.messaging.service;
17
18 import javax.jws.WebMethod;
19 import javax.jws.WebParam;
20 import javax.jws.WebService;
21 import javax.jws.soap.SOAPBinding;
22
23 import org.kuali.rice.core.api.exception.RiceIllegalArgumentException;
24 import org.kuali.rice.ksb.api.KsbApiConstants;
25
26
27
28
29
30
31
32 @WebService(name = "busAdminService", targetNamespace = KsbApiConstants.Namespaces.KSB_NAMESPACE_2_0)
33 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
34 public interface BusAdminService {
35
36 @WebMethod(operationName="ping")
37 void ping();
38
39 @WebMethod(operationName="setCorePoolSize")
40 void setCorePoolSize(@WebParam(name = "corePoolSize") int corePoolSize) throws RiceIllegalArgumentException;
41
42 @WebMethod(operationName="setMaximumPoolSize")
43 void setMaximumPoolSize(@WebParam(name = "maxPoolSize") int maxPoolSize) throws RiceIllegalArgumentException;
44
45 @WebMethod(operationName="setConfigProperty")
46 void setConfigProperty(@WebParam(name = "propertyName") String propertyName,
47 @WebParam(name = "propertyValue") String propertyValue) throws RiceIllegalArgumentException;
48
49 }