1 2 package org.objectweb.rentacar.services.client; 3 4 import java.net.MalformedURLException ; 5 import java.net.URL ; 6 import javax.xml.namespace.QName ; 7 import javax.xml.ws.Service; 8 import javax.xml.ws.WebEndpoint; 9 import javax.xml.ws.WebServiceClient; 10 import org.objectweb.rentacar.services.client.ConsultationImpl; 11 import org.objectweb.rentacar.services.client.ConsultationImplService; 12 13 14 20 @WebServiceClient(name = "ConsultationImplService", targetNamespace = "http://consultation.services.centraloffice.rentacar.objectweb.org/", wsdlLocation = "/home/rbarraza/workspace-rentacar/apps/agency-reservation/src/resources/ConsultationImplService.wsdl") 21 public class ConsultationImplService 22 extends Service 23 { 24 25 private final static URL WSDL_LOCATION; 26 private final static QName CONSULTATIONIMPLSERVICE = new QName ("http://consultation.services.centraloffice.rentacar.objectweb.org/", "ConsultationImplService"); 27 private final static QName CONSULTATIONIMPLPORT = new QName ("http://consultation.services.centraloffice.rentacar.objectweb.org/", "ConsultationImplPort"); 28 29 static { 30 URL url = null; 31 try { 32 url = new URL ("file:/home/rbarraza/workspace-rentacar/apps/agency-reservation/src/resources/ConsultationImplService.wsdl"); 33 } catch (MalformedURLException e) { 34 e.printStackTrace(); 35 } 36 WSDL_LOCATION = url; 37 } 38 39 public ConsultationImplService(URL wsdlLocation, QName serviceName) { 40 super(wsdlLocation, serviceName); 41 } 42 43 public ConsultationImplService() { 44 super(WSDL_LOCATION, CONSULTATIONIMPLSERVICE); 45 } 46 47 52 @WebEndpoint(name = "ConsultationImplPort") 53 public ConsultationImpl getConsultationImplPort() { 54 return (ConsultationImpl)super.getPort(CONSULTATIONIMPLPORT, ConsultationImpl.class); 55 } 56 57 } 58 | Popular Tags |