Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20662 kshitij.so 1
 
2
package com.bluedart.tempuri;
3
 
4
import javax.jws.WebMethod;
5
import javax.jws.WebParam;
6
import javax.jws.WebResult;
7
import javax.jws.WebService;
8
import javax.xml.ws.RequestWrapper;
9
import javax.xml.ws.ResponseWrapper;
10
import com.bluedart.entities.ArrayOfWayBillGenerationRequest;
11
import com.bluedart.entities.ArrayOfWayBillGenerationResponse;
12
import com.bluedart.entities.UserProfile;
13
import com.bluedart.entities.WayBillGenerationRequest;
14
import com.bluedart.entities.WayBillGenerationResponse;
15
 
16
 
17
/**
18
 * This class was generated by the JAX-WS RI.
19
 * JAX-WS RI 2.2.8
20
 * Generated source version: 2.0
21
 * 
22
 */
23
@WebService(name = "IWayBillGeneration", targetNamespace = "http://tempuri.org/")
24
public interface IWayBillGeneration {
25
 
26
 
27
    /**
28
     * 
29
     * @param request
30
     * @param profile
31
     * @return
32
     *     returns org.datacontract.schemas._2004._07.sapi_entities.WayBillGenerationResponse
33
     */
34
    @WebMethod(operationName = "GenerateWayBill", action = "http://tempuri.org/IWayBillGeneration/GenerateWayBill")
35
    @WebResult(name = "GenerateWayBillResult", targetNamespace = "http://tempuri.org/")
36
    @RequestWrapper(localName = "GenerateWayBill", targetNamespace = "http://tempuri.org/", className = "org.tempuri.GenerateWayBill")
37
    @ResponseWrapper(localName = "GenerateWayBillResponse", targetNamespace = "http://tempuri.org/", className = "org.tempuri.GenerateWayBillResponse")
38
    public WayBillGenerationResponse generateWayBill(
39
        @WebParam(name = "Request", targetNamespace = "http://tempuri.org/")
40
        WayBillGenerationRequest request,
41
        @WebParam(name = "Profile", targetNamespace = "http://tempuri.org/")
42
        UserProfile profile);
43
 
44
    /**
45
     * 
46
     * @param request
47
     * @param profile
48
     * @return
49
     *     returns org.datacontract.schemas._2004._07.sapi_entities.ArrayOfWayBillGenerationResponse
50
     */
51
    @WebMethod(operationName = "ImportData", action = "http://tempuri.org/IWayBillGeneration/ImportData")
52
    @WebResult(name = "ImportDataResult", targetNamespace = "http://tempuri.org/")
53
    @RequestWrapper(localName = "ImportData", targetNamespace = "http://tempuri.org/", className = "org.tempuri.ImportData")
54
    @ResponseWrapper(localName = "ImportDataResponse", targetNamespace = "http://tempuri.org/", className = "org.tempuri.ImportDataResponse")
55
    public ArrayOfWayBillGenerationResponse importData(
56
        @WebParam(name = "Request", targetNamespace = "http://tempuri.org/")
57
        ArrayOfWayBillGenerationRequest request,
58
        @WebParam(name = "Profile", targetNamespace = "http://tempuri.org/")
59
        UserProfile profile);
60
 
61
}