package at.gv.util.wsdl.ur_V2; 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; import at.gv.util.xsd.ur_V2.xmlsw.SearchByExampleType; import at.gv.util.xsd.ur_V2.xmlsw.SearchByIdType; import at.gv.util.xsd.ur_V2.xmlsw.SearchResponseType; /** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.2.4-b01 * Generated source version: 2.2 * */ @WebService(name = "URSuche", targetNamespace = "urn:at:statistik:ur:ws") @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) @XmlSeeAlso({ at.gv.util.xsd.ur_V2.pd.ObjectFactory.class, at.gv.util.xsd.ur_V2.search.ObjectFactory.class, at.gv.util.xsd.ur_V2.xmlsw.ObjectFactory.class, at.gv.util.xsd.ur_V2.simpletypes.ObjectFactory.class }) public interface URSuche { /** * Operation für den Abfragetyp * Search by Example * * * @param body * @return * returns at.gv.util.xsd.ur_V2.xmlsw.SearchResponseType */ @WebMethod @WebResult(name = "SearchResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body") public SearchResponseType searchByExample( @WebParam(name = "SearchByExample", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body") SearchByExampleType body); /** * Operation für den Abfragetyp * Search by Id * * * @param body * @return * returns at.gv.util.xsd.ur_V2.xmlsw.SearchResponseType */ @WebMethod @WebResult(name = "SearchResponse", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body") public SearchResponseType searchById( @WebParam(name = "SearchById", targetNamespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", partName = "body") SearchByIdType body); }