All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.chemistry.opencmis.commons.impl.jaxb.CmisProperty Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version

package org.apache.chemistry.opencmis.commons.impl.jaxb;

import java.util.HashMap;
import java.util.Map;
import javax.xml.namespace.QName;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAnyAttribute;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for cmisProperty complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="cmisProperty">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attGroup ref="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisUndefinedAttribute"/>
 *       <attribute name="propertyDefinitionId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="localName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="queryName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cmisProperty", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/") @XmlSeeAlso({ CmisPropertyBoolean.class, CmisPropertyId.class, CmisPropertyInteger.class, CmisPropertyDateTime.class, CmisPropertyDecimal.class, CmisPropertyHtml.class, CmisPropertyString.class, CmisPropertyUri.class }) public class CmisProperty { @XmlAttribute(name = "propertyDefinitionId") protected String propertyDefinitionId; @XmlAttribute(name = "localName") protected String localName; @XmlAttribute(name = "displayName") protected String displayName; @XmlAttribute(name = "queryName") protected String queryName; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the propertyDefinitionId property. * * @return * possible object is * {@link String } * */ public String getPropertyDefinitionId() { return propertyDefinitionId; } /** * Sets the value of the propertyDefinitionId property. * * @param value * allowed object is * {@link String } * */ public void setPropertyDefinitionId(String value) { this.propertyDefinitionId = value; } /** * Gets the value of the localName property. * * @return * possible object is * {@link String } * */ public String getLocalName() { return localName; } /** * Sets the value of the localName property. * * @param value * allowed object is * {@link String } * */ public void setLocalName(String value) { this.localName = value; } /** * Gets the value of the displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ 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; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy