ghy
Alejandro Acuña
2025-03-12 26319e4c5bfbee722c15b8e7ccca9b6127bb1cb8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 
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);
 
}