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 import org.kuali.rice.ken.api.KenApiConstants;
20
21 import javax.jws.WebMethod;
22 import javax.jws.WebService;
23 import javax.jws.soap.SOAPBinding;
24
25
26
27
28 @WebService(name= KenApiConstants.ServiceNames.SEND_NOTIFICATION_SERVICE, targetNamespace = KenApiConstants.Namespaces.KEN_NAMESPACE_2_0)
29 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.BARE)
30 public interface SendNotificationService {
31 @WebMethod
32 void invoke(String message) throws RiceIllegalArgumentException;
33 }