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