1   
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  
15  
16  package org.kuali.student.common_test_tester.support;
17  
18  import javax.jws.WebMethod;
19  import javax.jws.WebService;
20  import javax.jws.soap.SOAPBinding;
21  
22  @WebService(name = "MyService", targetNamespace = "http://student.kuali.org/poc/wsdl/test/my")
23  @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
24  public interface MyService {
25  	@WebMethod
26  	public String saveString(String value);
27  	
28  	@WebMethod
29  	public String findStringId(String id);
30  	
31  	@WebMethod
32  	public boolean updateValue(String id, String value);
33  
34      @WebMethod
35      public String findValueFromValue(String value);
36  
37      @WebMethod
38      public String echo(String string);
39      
40  }