mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
Merged CMIS063 to HEAD
16930: MOB-1330: Upgrade Web Services Repository to 0.7 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17243 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -22,10 +22,11 @@ import javax.xml.namespace.QName;
|
||||
* <complexType name="cmisProperty">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200901}cmisUndefinedAttribute"/>
|
||||
* <attribute name="pdid" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
|
||||
* <attribute name="localname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
|
||||
* <attribute name="displayname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
|
||||
* <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
|
||||
* <attribute name="propertyDefinitionId" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
|
||||
* <attribute name="localName" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
|
||||
* <attribute name="displayName" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
|
||||
* <attribute name="queryName" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
@@ -34,14 +35,12 @@ import javax.xml.namespace.QName;
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "cmisProperty", namespace = "http://docs.oasis-open.org/ns/cmis/core/200901")
|
||||
@XmlType(name = "cmisProperty", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/")
|
||||
@XmlSeeAlso({
|
||||
CmisPropertyDecimal.class,
|
||||
CmisPropertyInteger.class,
|
||||
CmisPropertyXhtml.class,
|
||||
CmisPropertyDateTime.class,
|
||||
CmisPropertyUri.class,
|
||||
CmisPropertyXml.class,
|
||||
CmisPropertyHtml.class,
|
||||
CmisPropertyBoolean.class,
|
||||
CmisPropertyString.class,
|
||||
@@ -49,88 +48,115 @@ import javax.xml.namespace.QName;
|
||||
})
|
||||
public class CmisProperty {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlSchemaType(name = "anySimpleType")
|
||||
protected String pdid;
|
||||
@XmlAttribute
|
||||
@XmlSchemaType(name = "anySimpleType")
|
||||
protected String localname;
|
||||
protected String propertyDefinitionId;
|
||||
@XmlAttribute
|
||||
@XmlSchemaType(name = "anySimpleType")
|
||||
protected String displayname;
|
||||
protected String localName;
|
||||
@XmlAttribute
|
||||
@XmlSchemaType(name = "anySimpleType")
|
||||
protected String displayName;
|
||||
@XmlAttribute
|
||||
@XmlSchemaType(name = "anySimpleType")
|
||||
protected String queryName;
|
||||
@XmlAnyAttribute
|
||||
private Map<QName, String> otherAttributes = new HashMap<QName, String>();
|
||||
|
||||
/**
|
||||
* Gets the value of the pdid property.
|
||||
* Gets the value of the propertyDefinitionId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPdid() {
|
||||
return pdid;
|
||||
public String getPropertyDefinitionId() {
|
||||
return propertyDefinitionId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pdid property.
|
||||
* Sets the value of the propertyDefinitionId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPdid(String value) {
|
||||
this.pdid = value;
|
||||
public void setPropertyDefinitionId(String value) {
|
||||
this.propertyDefinitionId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the localname property.
|
||||
* Gets the value of the localName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLocalname() {
|
||||
return localname;
|
||||
public String getLocalName() {
|
||||
return localName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the localname property.
|
||||
* Sets the value of the localName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLocalname(String value) {
|
||||
this.localname = value;
|
||||
public void setLocalName(String value) {
|
||||
this.localName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the displayname property.
|
||||
* Gets the value of the displayName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDisplayname() {
|
||||
return displayname;
|
||||
public String getDisplayName() {
|
||||
return displayName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the displayname property.
|
||||
* Sets the value of the displayName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDisplayname(String value) {
|
||||
this.displayname = value;
|
||||
public void setDisplayName(String value) {
|
||||
this.displayName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the queryName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getQueryName() {
|
||||
return queryName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the queryName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setQueryName(String value) {
|
||||
this.queryName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user