KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > rentacar > services > client > UpdateCentralDBImpl


1
2 package org.objectweb.rentacar.services.client;
3
4 import javax.jws.WebMethod;
5 import javax.jws.WebParam;
6 import javax.jws.WebService;
7 import javax.xml.datatype.XMLGregorianCalendar JavaDoc;
8 import javax.xml.ws.RequestWrapper;
9 import javax.xml.ws.ResponseWrapper;
10 import org.objectweb.rentacar.services.client.CentralOfficeException_Exception;
11 import org.objectweb.rentacar.services.client.UpdateCentralDBImpl;
12
13
14 /**
15  * This class was generated by the JAXWS SI.
16  * JAX-WS RI 2.0-b26-ea3
17  * Generated source version: 2.0
18  *
19  */

20 @WebService(name = "UpdateCentralDBImpl", targetNamespace = "http://update.services.centraloffice.rentacar.objectweb.org/", wsdlLocation = "/home/rbarraza/workspace-rentacar/apps/agency-reservation/src/resources/UpdateCentralDBImplService.wsdl")
21 public interface UpdateCentralDBImpl {
22
23
24     /**
25      *
26      * @param endingDate
27      * @param endingAgencyId
28      * @param startingAgencyId
29      * @param startingDate
30      * @param carId
31      * @param customerId
32      * @throws CentralOfficeException_Exception
33      */

34     @WebMethod
35     @RequestWrapper(localName = "addReservationInCentralDB", targetNamespace = "http://update.services.centraloffice.rentacar.objectweb.org/", className = "org.objectweb.rentacar.services.client.AddReservationInCentralDB")
36     @ResponseWrapper(localName = "addReservationInCentralDBResponse", targetNamespace = "http://update.services.centraloffice.rentacar.objectweb.org/", className = "org.objectweb.rentacar.services.client.AddReservationInCentralDBResponse")
37     public void addReservationInCentralDB(
38         @WebParam(name = "customerId", targetNamespace = "")
39         String JavaDoc customerId,
40         @WebParam(name = "carId", targetNamespace = "")
41         String JavaDoc carId,
42         @WebParam(name = "startingDate", targetNamespace = "")
43         XMLGregorianCalendar JavaDoc startingDate,
44         @WebParam(name = "endingDate", targetNamespace = "")
45         XMLGregorianCalendar JavaDoc endingDate,
46         @WebParam(name = "startingAgencyId", targetNamespace = "")
47         String JavaDoc startingAgencyId,
48         @WebParam(name = "endingAgencyId", targetNamespace = "")
49         String JavaDoc endingAgencyId)
50         throws CentralOfficeException_Exception
51     ;
52
53 }
54
Popular Tags