mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
Merged DEV/CMIS0_61 to HEAD (part 4)
14095 CMIS 0.61 Web Services Including Tests & JavaClient 14123 Several Minor Fixes git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14177 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
|
||||
package org.alfresco.repo.cmis.ws;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
@@ -22,9 +21,8 @@ import javax.xml.namespace.QName;
|
||||
* <complexType name="cmisProperty">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attGroup ref="{http://www.cmis.org/2008/05}cmisUndefinedAttribute"/>
|
||||
* <attribute ref="{http://www.cmis.org/2008/05}name use="required""/>
|
||||
* <attribute ref="{http://www.cmis.org/2008/05}index"/>
|
||||
* <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
|
||||
* <attribute ref="{http://docs.oasis-open.org/ns/cmis/core/200901}name use="required""/>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
@@ -33,24 +31,22 @@ import javax.xml.namespace.QName;
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "cmisProperty")
|
||||
@XmlType(name = "cmisProperty", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901")
|
||||
@XmlSeeAlso({
|
||||
CmisPropertyId.class,
|
||||
CmisPropertyUri.class,
|
||||
CmisPropertyDecimal.class,
|
||||
CmisPropertyXml.class,
|
||||
CmisPropertyString.class,
|
||||
CmisPropertyDateTime.class,
|
||||
CmisPropertyHtml.class,
|
||||
CmisPropertyInteger.class,
|
||||
CmisPropertyBoolean.class
|
||||
CmisPropertyDecimal.class,
|
||||
CmisPropertyId.class,
|
||||
CmisPropertyDateTime.class,
|
||||
CmisPropertyXml.class,
|
||||
CmisPropertyBoolean.class,
|
||||
CmisPropertyUri.class,
|
||||
CmisPropertyString.class,
|
||||
CmisPropertyInteger.class
|
||||
})
|
||||
public class CmisProperty {
|
||||
|
||||
@XmlAttribute(namespace = "http://www.cmis.org/2008/05", required = true)
|
||||
@XmlAttribute(namespace = "http://docs.oasis-open.org/ns/cmis/core/200901", required = true)
|
||||
protected String name;
|
||||
@XmlAttribute(namespace = "http://www.cmis.org/2008/05")
|
||||
protected BigInteger index;
|
||||
@XmlAnyAttribute
|
||||
private Map<QName, String> otherAttributes = new HashMap<QName, String>();
|
||||
|
||||
@@ -78,30 +74,6 @@ public class CmisProperty {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the index property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getIndex() {
|
||||
return index;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the index property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setIndex(BigInteger value) {
|
||||
this.index = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a map that contains attributes that aren't bound to any typed property on this class.
|
||||
*
|
||||
|
Reference in New Issue
Block a user