package at.gv.util.wsdl.ur_V7; 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 3.1.10 * 2021-03-29T14:50:13.020+02:00 * Generated source version: 3.1.10 * */ @WebService(targetNamespace = "urn:at:statistik:ur:ws", name = "URSuche") @XmlSeeAlso({at.gv.util.xsd.ur_V7.search.ObjectFactory.class, at.gv.util.xsd.ur_V7.xmlsw.ObjectFactory.class, at.gv.util.xsd.ur_V7.pd.ObjectFactory.class, at.gv.util.xsd.ur_V7.simpletypes.ObjectFactory.class}) @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) public interface URSuche { /** * Operation für den Abfragetyp * Search by Example * */ @WebMethod @WebResult(name = "SearchResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body") public at.gv.util.xsd.ur_V7.xmlsw.SearchResponseType searchByExample( @WebParam(partName = "body", name = "SearchByExample", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#") at.gv.util.xsd.ur_V7.xmlsw.SearchByExampleType body ) throws XmlSwFault; /** * Operation für den Abfragetyp * Search by Id * */ @WebMethod @WebResult(name = "SearchResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body") public at.gv.util.xsd.ur_V7.xmlsw.SearchResponseType searchById( @WebParam(partName = "body", name = "SearchById", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#") at.gv.util.xsd.ur_V7.xmlsw.SearchByIdType body ) throws XmlSwFault; }