package at.gv.util.wsdl.zkopf; 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.zkopf.BulkAnswerType; import at.gv.util.xsd.zkopf.BulkQueryType; /** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.1.6 in JDK 6 * Generated source version: 2.1 * */ @WebService(name = "BulkPortType", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/kopf/wsdl") @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) @XmlSeeAlso({ at.gv.util.xsd.zkopf.persondata.ObjectFactory.class, at.gv.util.xsd.zkopf.xmldsig.ObjectFactory.class, at.gv.util.xsd.zkopf.ObjectFactory.class }) public interface BulkPortType { /** * * @param bulkQuery * @return * returns at.gv.util.xsd.zkopf.BulkAnswerType */ @WebMethod(operationName = "BulkOperation", action = "tns:BulkPortType#BulkOperation") @WebResult(name = "BulkAnswer", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/kopf", partName = "BulkAnswer") public BulkAnswerType bulkOperation( @WebParam(name = "BulkQuery", targetNamespace = "http://reference.e-government.gv.at/namespaces/zustellung/kopf", partName = "BulkQuery") BulkQueryType bulkQuery); }