001package org.kuali.ole.docstore.service; 002 003 004import javax.jws.WebService; 005import javax.jws.soap.SOAPBinding; 006 007/** 008 * Created with IntelliJ IDEA. 009 * User:? 010 * Date: 5/22/12 011 * Time: 5:49 PM 012 * To change this template use File | Settings | File Templates. 013 */ 014@WebService(name = "oleUuidCheckWebService", targetNamespace = "http://service.select.ole.kuali.org/") 015@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) 016public interface OleUuidCheckWebService { 017 018 public String checkUuidExsistence(String uuid); 019}