001package org.kuali.ole.service; 002 003import javax.jws.WebService; 004import javax.jws.soap.SOAPBinding; 005import java.util.List; 006 007/** 008 * Created with IntelliJ IDEA. 009 * User: ? 010 * Date: 2/21/13 011 * Time: 10:47 PM 012 * To change this template use File | Settings | File Templates. 013 */ 014@WebService(name = "OleLocationWebService", targetNamespace = "http://service.select.ole.kuali.org/") 015@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) 016public interface OleLocationWebService { 017 018 public List<String> getItemLocation(); 019 020 public List<String> getItemType(); 021}