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.ksb.api.KsbApiConstants; |
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
@WebService(name = "busAdminServiceSoap", targetNamespace = KsbApiConstants.Namespaces.KSB_NAMESPACE_2_0) |
32 | |
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) |
33 | |
public interface BusAdminService { |
34 | |
|
35 | |
@WebMethod(operationName="ping") |
36 | |
public void ping(); |
37 | |
|
38 | |
@WebMethod(operationName="setCorePoolSize") |
39 | |
public void setCorePoolSize(@WebParam(name = "corePoolSize") int corePoolSize); |
40 | |
|
41 | |
@WebMethod(operationName="setMaximumPoolSize") |
42 | |
public void setMaximumPoolSize(@WebParam(name = "maxPoolSize") int maxPoolSize); |
43 | |
|
44 | |
@WebMethod(operationName="setConfigProperty") |
45 | |
public void setConfigProperty(@WebParam(name = "propertyName") String propertyName, |
46 | |
@WebParam(name = "propertyValue") String propertyValue); |
47 | |
|
48 | |
} |