1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.ken.api.service;
17
18 import org.kuali.rice.core.api.exception.RiceIllegalArgumentException;
19
20 import javax.jws.WebMethod;
21 import javax.jws.WebService;
22 import javax.jws.soap.SOAPBinding;
23
24
25
26
27 @WebService(name=KENServiceConstants.ServiceNames.SEND_NOTIFICATION_SERVICE, targetNamespace = KENServiceConstants.Namespaces.KEN_NAMESPACE_2_0)
28 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.BARE)
29 public interface SendNotificationService {
30 @WebMethod
31 void invoke(String message) throws RiceIllegalArgumentException;
32 }