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 ; 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 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 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 customerId, 40 @WebParam(name = "carId", targetNamespace = "") 41 String carId, 42 @WebParam(name = "startingDate", targetNamespace = "") 43 XMLGregorianCalendar startingDate, 44 @WebParam(name = "endingDate", targetNamespace = "") 45 XMLGregorianCalendar endingDate, 46 @WebParam(name = "startingAgencyId", targetNamespace = "") 47 String startingAgencyId, 48 @WebParam(name = "endingAgencyId", targetNamespace = "") 49 String endingAgencyId) 50 throws CentralOfficeException_Exception 51 ; 52 53 } 54 | Popular Tags |