package org.talend.services.test.library._1_0; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.xml.bind.annotation.XmlSeeAlso; /** * This class was generated by Apache CXF 2.7.12 * 2014-09-29T09:31:37.065+03:00 * Generated source version: 2.7.12 * */ @WebService(targetNamespace = "http://services.talend.org/test/Library/1.0", name = "Library") @XmlSeeAlso({org.talend.types.test.generalobjects.errorhandling._1.ObjectFactory.class, org.talend.types.test.library.common._1.ObjectFactory.class}) @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) public interface Library { @WebResult(name = "ListOfBooks", targetNamespace = "http://types.talend.org/test/Library/Common/1.0", partName = "body") @WebMethod(action = "seekBook") public org.talend.types.test.library.common._1.ListOfBooks seekBook( @WebParam(partName = "body", name = "SearchFor", targetNamespace = "http://types.talend.org/test/Library/Common/1.0") org.talend.types.test.library.common._1.SearchFor body ) throws SeekBookError; }