package trax.skp5; 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 the JAX-WS RI. * JAX-WS RI 2.2.6-1b01 * Generated source version: 2.2 * */ @WebService(name = "SkpPortType", targetNamespace = "http://traxelektronik.pl/trax/ws/protocol") @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) @XmlSeeAlso({ ObjectFactory.class }) public interface SkpPortType { /** * * @param checkSkpDataRequest * @return * returns trax.skp5.CheckSkpDataResponse */ @WebMethod(action = "SkpPortType#checkSkpData") @WebResult(name = "checkSkpDataResponse", targetNamespace = "http://traxelektronik.pl/trax/ws/protocol", partName = "checkSkpDataResponse") public CheckSkpDataResponse checkSkpData( @WebParam(name = "checkSkpDataRequest", targetNamespace = "http://traxelektronik.pl/trax/ws/protocol", partName = "checkSkpDataRequest") CheckSkpDataRequest checkSkpDataRequest); /** * * @param skpAlarmRequest * @return * returns trax.skp5.Response */ @WebMethod(action = "SkpPortType#skpAlarmEvent") @WebResult(name = "response", targetNamespace = "http://traxelektronik.pl/trax/ws/protocol", partName = "skpAlarmResponse") public Response skpAlarmEvent( @WebParam(name = "skpAlarmRequest", targetNamespace = "http://traxelektronik.pl/trax/ws/protocol", partName = "skpAlarmRequest") SkpAlarmRequest skpAlarmRequest); /** * * @param checkSkpStatusRequest * @return * returns trax.skp5.CheckSkpStatusResponse */ @WebMethod(action = "SkpPortType#checkSkpStatus") @WebResult(name = "checkSkpStatusResponse", targetNamespace = "http://traxelektronik.pl/trax/ws/protocol", partName = "checkSkpStatusResponse") public CheckSkpStatusResponse checkSkpStatus( @WebParam(name = "checkSkpStatusRequest", targetNamespace = "http://traxelektronik.pl/trax/ws/protocol", partName = "checkSkpStatusRequest") CheckSkpStatusRequest checkSkpStatusRequest); }