package net.conselldemallorca.helium.wsintegraciones.custodiadocumentos; import java.net.MalformedURLException; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.ws.WebEndpoint; import javax.xml.ws.WebServiceClient; import javax.xml.ws.WebServiceFeature; import javax.xml.ws.Service; /** * This class was generated by Apache CXF 3.0.0-milestone2 * 2014-05-27T16:12:27.253+02:00 * Generated source version: 3.0.0-milestone2 * */ @WebServiceClient(name = "CustodiaService", wsdlLocation = "file:/C:/Users/javierg/workspace_helium_30/z/WebContent/WEB-INF/custodia.wsdl", targetNamespace = "https://proves.caib.es/signatura/services/CustodiaDocumentos") public class CustodiaService extends Service { public final static URL WSDL_LOCATION; public final static QName SERVICE = new QName("https://proves.caib.es/signatura/services/CustodiaDocumentos", "CustodiaService"); public final static QName CustodiaDocumentos = new QName("https://proves.caib.es/signatura/services/CustodiaDocumentos", "CustodiaDocumentos"); static { URL url = null; try { url = new URL("file:/C:/Users/javierg/workspace_helium_30/z/WebContent/WEB-INF/custodia.wsdl"); } catch (MalformedURLException e) { java.util.logging.Logger.getLogger(CustodiaService.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "file:/C:/Users/javierg/workspace_helium_30/z/WebContent/WEB-INF/custodia.wsdl"); } WSDL_LOCATION = url; } public CustodiaService(URL wsdlLocation) { super(wsdlLocation, SERVICE); } public CustodiaService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public CustodiaService() { super(WSDL_LOCATION, SERVICE); } /** * * @return * returns Custodia */ @WebEndpoint(name = "CustodiaDocumentos") public Custodia getCustodiaDocumentos() { return super.getPort(CustodiaDocumentos, Custodia.class); } /** * * @param features * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values. * @return * returns Custodia */ @WebEndpoint(name = "CustodiaDocumentos") public Custodia getCustodiaDocumentos(WebServiceFeature... features) { return super.getPort(CustodiaDocumentos, Custodia.class, features); } }