1 package org.kuali.ole.service; 2 3 import javax.jws.WebService; 4 import javax.jws.soap.SOAPBinding; 5 import java.util.Map; 6 7 @WebService(name = "OleLoanWebService", targetNamespace = "http://service.ole.kuali.org/") 8 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) 9 10 public interface OleLoanDocumentWebService { 11 12 public String getItemDueDate(String itemUuId); 13 14 public boolean getItemRenewable(String itemUuId, String itemType, String location); 15 16 public String getItemInformation(String itemUUID,String itemType,String itemShelvingLocation,String shelvingLocation,String localLocation); 17 18 }