org.apache.chemistry.opencmis.commons.impl.jaxb.CmisPropertyUri Maven / Gradle / Ivy
package org.apache.chemistry.opencmis.commons.impl.jaxb;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAnyElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;
/**
* Java class for cmisPropertyUri complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="cmisPropertyUri">
* <complexContent>
* <extension base="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisProperty">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
* <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <anyAttribute processContents='lax' namespace='##other'/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cmisPropertyUri", namespace = "http://docs.oasis-open.org/ns/cmis/core/200908/", propOrder = {
"value",
"any"
})
public class CmisPropertyUri
extends CmisProperty
{
@XmlSchemaType(name = "anyURI")
protected List value;
@XmlAnyElement(lax = true)
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy