1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.service; |
17 | |
|
18 | |
import javax.jws.WebParam; |
19 | |
import javax.jws.WebService; |
20 | |
import javax.jws.soap.SOAPBinding; |
21 | |
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
22 | |
|
23 | |
import org.kuali.rice.core.jaxb.AttributeSetAdapter; |
24 | |
import org.kuali.rice.kim.bo.types.dto.AttributeSet; |
25 | |
import org.kuali.rice.kim.util.KIMWebServiceConstants; |
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
@WebService(name = KIMWebServiceConstants.ResponsibilityUpdateService.WEB_SERVICE_NAME, targetNamespace = KIMWebServiceConstants.MODULE_TARGET_NAMESPACE) |
34 | |
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) |
35 | |
public interface ResponsibilityUpdateService { |
36 | |
|
37 | |
void saveResponsibility( @WebParam(name="responsibilityId") String responsibilityId, |
38 | |
@WebParam(name="responsibilityTemplateId") String responsibilityTemplateId, |
39 | |
@WebParam(name="namespaceCode") String namespaceCode, |
40 | |
@WebParam(name="name") String name, |
41 | |
@WebParam(name="description") String description, |
42 | |
@WebParam(name="active") boolean active, |
43 | |
@WebParam(name="responsibilityDetails") @XmlJavaTypeAdapter(value = AttributeSetAdapter.class) AttributeSet responsibilityDetails ); |
44 | |
} |