package at.gv.util.wsdl.mis.usp_v2; 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.1.10 * 2019-04-10T12:00:27.898+02:00 * Generated source version: 3.1.10 * */ @WebServiceClient(name = "synchronisation-service.serviceagent", wsdlLocation = "file:./src/main/resources/wsdl/mis/usp_v2/Synchronisation-1.wsdl", targetNamespace = "http://xmlns.example.com/1481028889472") public class SynchronisationServiceServiceagent extends Service { public final static URL WSDL_LOCATION; public final static QName SERVICE = new QName("http://xmlns.example.com/1481028889472", "synchronisation-service.serviceagent"); public final static QName ISyncServiceEndpoint = new QName("http://xmlns.example.com/1481028889472", "ISyncServiceEndpoint"); static { URL url = null; try { url = new URL("file:./src/main/resources/wsdl/mis/usp_v2/Synchronisation-1.wsdl"); } catch (MalformedURLException e) { java.util.logging.Logger.getLogger(SynchronisationServiceServiceagent.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "file:./src/main/resources/wsdl/mis/usp_v2/Synchronisation-1.wsdl"); } WSDL_LOCATION = url; } public SynchronisationServiceServiceagent(URL wsdlLocation) { super(wsdlLocation, SERVICE); } public SynchronisationServiceServiceagent(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public SynchronisationServiceServiceagent() { super(WSDL_LOCATION, SERVICE); } public SynchronisationServiceServiceagent(WebServiceFeature ... features) { super(WSDL_LOCATION, SERVICE, features); } public SynchronisationServiceServiceagent(URL wsdlLocation, WebServiceFeature ... features) { super(wsdlLocation, SERVICE, features); } public SynchronisationServiceServiceagent(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { super(wsdlLocation, serviceName, features); } /** * * @return * returns ISyncService */ @WebEndpoint(name = "ISyncServiceEndpoint") public ISyncService getISyncServiceEndpoint() { return super.getPort(ISyncServiceEndpoint, ISyncService.class); } /** * * @param features * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. * @return * returns ISyncService */ @WebEndpoint(name = "ISyncServiceEndpoint") public ISyncService getISyncServiceEndpoint(WebServiceFeature... features) { return super.getPort(ISyncServiceEndpoint, ISyncService.class, features); } }