Merge from DEV/SEAMIST3

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10831 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2008-09-07 13:04:45 +00:00
parent 946789aa4c
commit 64bf87af37
241 changed files with 15967 additions and 8131 deletions

View File

@@ -1,4 +1,8 @@
/*
*
*/
package org.alfresco.repo.cmis.ws;
import java.net.MalformedURLException;
@@ -7,21 +11,24 @@ 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.ObjectServicePort;
import javax.xml.ws.WebServiceFeature;
/**
* This class was generated by Apache CXF 2.0.6
* Tue Jul 29 18:21:47 EEST 2008
* Generated source version: 2.0.6
* This class was generated by Apache CXF 2.1.2
* Fri Sep 05 13:44:38 EEST 2008
* Generated source version: 2.1.2
*
*/
@WebServiceClient(name = "ObjectService", targetNamespace = "http://www.cmis.org/ns/1.0", wsdlLocation = "file:/D:/work/CMIS-WS/CMIS-WS/web/wsdl/cmis/ObjectService.wsdl")
@WebServiceClient(name = "ObjectService",
wsdlLocation = "file:/D:/work/CMIS-WS/CMIS-WS/web/wsdl/cmis/ObjectService.wsdl",
targetNamespace = "http://www.cmis.org/2008/05")
public class ObjectService extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("http://www.cmis.org/ns/1.0", "ObjectService");
public final static QName ObjectServicePort = new QName("http://www.cmis.org/ns/1.0", "ObjectServicePort");
public final static QName SERVICE = new QName("http://www.cmis.org/2008/05", "ObjectService");
public final static QName ObjectServicePort = new QName("http://www.cmis.org/2008/05", "ObjectServicePort");
static {
URL url = null;
try {
@@ -55,4 +62,16 @@ public class ObjectService extends Service {
return super.getPort(ObjectServicePort, ObjectServicePort.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 ObjectServicePort
*/
@WebEndpoint(name = "ObjectServicePort")
public ObjectServicePort getObjectServicePort(WebServiceFeature... features) {
return super.getPort(ObjectServicePort, ObjectServicePort.class, features);
}
}