1 | |
package org.kuali.rice.core.api.cache; |
2 | |
|
3 | |
|
4 | |
import org.kuali.rice.core.api.exception.RiceIllegalArgumentException; |
5 | |
|
6 | |
import javax.jws.WebMethod; |
7 | |
import javax.jws.WebParam; |
8 | |
|
9 | |
import javax.jws.soap.SOAPBinding; |
10 | |
import java.util.Collection; |
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) |
17 | |
public interface CacheService { |
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
@WebMethod(operationName="flush") |
26 | |
void flush(@WebParam(name = "cacheTargets") Collection<CacheTarget> cacheTargets) throws RiceIllegalArgumentException; |
27 | |
} |