1 package org.kuali.ole.docstore.service; 2 3 4 import javax.jws.WebService; 5 import javax.jws.soap.SOAPBinding; 6 7 /** 8 * Created with IntelliJ IDEA. 9 * User:? 10 * Date: 5/22/12 11 * Time: 5:49 PM 12 * To change this template use File | Settings | File Templates. 13 */ 14 @WebService(name = "oleUuidCheckWebService", targetNamespace = "http://service.select.ole.kuali.org/") 15 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) 16 public interface OleUuidCheckWebService { 17 18 public String checkUuidExsistence(String uuid); 19 }