View Javadoc
1   package org.kuali.ole.service;
2   
3   import javax.jws.WebService;
4   import javax.jws.soap.SOAPBinding;
5   import java.util.List;
6   
7   /**
8    * Created with IntelliJ IDEA.
9    * User: ?
10   * Date: 2/21/13
11   * Time: 10:47 PM
12   * To change this template use File | Settings | File Templates.
13   */
14  @WebService(name = "OleLocationWebService", targetNamespace = "http://service.select.ole.kuali.org/")
15  @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
16  public interface OleLocationWebService {
17  
18      public List<String> getItemLocation();
19  
20      public List<String> getItemType();
21  }