summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build/generated/jax-wsCache/WsServ/me/dcariotti/netsix/WsServ.java
blob: d2e9b5394878dca268d22647bbdd18083f28bc18 (plain)
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
package me.dcariotti.netsix;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.Action;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;


/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 2.2.6-1b01 
 * Generated source version: 2.2
 * 
 */
@WebService(name = "WsServ", targetNamespace = "http://wsserv.dcariotti.me/")
@XmlSeeAlso({
    ObjectFactory.class
})
public interface WsServ {


    /**
     * 
     * @param name
     * @param episode
     * @return
     *     returns boolean
     */
    @WebMethod
    @WebResult(targetNamespace = "")
    @RequestWrapper(localName = "richiedi", targetNamespace = "http://wsserv.dcariotti.me/", className = "me.dcariotti.netsix.Richiedi")
    @ResponseWrapper(localName = "richiediResponse", targetNamespace = "http://wsserv.dcariotti.me/", className = "me.dcariotti.netsix.RichiediResponse")
    @Action(input = "http://wsserv.dcariotti.me/WsServ/richiediRequest", output = "http://wsserv.dcariotti.me/WsServ/richiediResponse")
    public boolean richiedi(
        @WebParam(name = "name", targetNamespace = "")
        String name,
        @WebParam(name = "episode", targetNamespace = "")
        int episode);

}