mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merge from SEAMIST3
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10722 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
|
||||
package org.alfresco.repo.cmis.ws;
|
||||
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import javax.xml.namespace.QName;
|
||||
import javax.xml.ws.Service;
|
||||
import javax.xml.ws.WebEndpoint;
|
||||
import javax.xml.ws.WebServiceClient;
|
||||
import org.alfresco.repo.cmis.ws.NavigationServicePort;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 2.0.6
|
||||
* Tue May 27 14:11:27 EEST 2008
|
||||
* Generated source version: 2.0.6
|
||||
*
|
||||
*/
|
||||
|
||||
@WebServiceClient(name = "NavigationService", targetNamespace = "http://www.cmis.org/ns/1.0", wsdlLocation = "file:/D:/work/AlfrescoCMIS-WS/WScmis/web/wsdl/cmis/NavigationService.wsdl")
|
||||
public class NavigationService extends Service {
|
||||
|
||||
public final static URL WSDL_LOCATION;
|
||||
public final static QName SERVICE = new QName("http://www.cmis.org/ns/1.0", "NavigationService");
|
||||
public final static QName NavigationServicePort = new QName("http://www.cmis.org/ns/1.0", "NavigationServicePort");
|
||||
static {
|
||||
URL url = null;
|
||||
try {
|
||||
url = new URL("file:/D:/work/AlfrescoCMIS-WS/WScmis/web/wsdl/cmis/NavigationService.wsdl");
|
||||
} catch (MalformedURLException e) {
|
||||
System.err.println("Can not initialize the default wsdl from file:/D:/work/AlfrescoCMIS-WS/WScmis/web/wsdl/cmis/NavigationService.wsdl");
|
||||
// e.printStackTrace();
|
||||
}
|
||||
WSDL_LOCATION = url;
|
||||
}
|
||||
|
||||
public NavigationService(URL wsdlLocation) {
|
||||
super(wsdlLocation, SERVICE);
|
||||
}
|
||||
|
||||
public NavigationService(URL wsdlLocation, QName serviceName) {
|
||||
super(wsdlLocation, serviceName);
|
||||
}
|
||||
|
||||
public NavigationService() {
|
||||
super(WSDL_LOCATION, SERVICE);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
* returns NavigationServicePort
|
||||
*/
|
||||
@WebEndpoint(name = "NavigationServicePort")
|
||||
public NavigationServicePort getNavigationServicePort() {
|
||||
return super.getPort(NavigationServicePort, NavigationServicePort.class);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user