org.apache.chemistry.opencmis.commons.impl.jaxb.GetPropertiesOfLatestVersionResponse Maven / Gradle / Ivy
package org.apache.chemistry.opencmis.commons.impl.jaxb;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="properties" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisPropertiesType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"properties"
})
@XmlRootElement(name = "getPropertiesOfLatestVersionResponse")
public class GetPropertiesOfLatestVersionResponse {
@XmlElement(required = true)
protected CmisPropertiesType properties;
/**
* Gets the value of the properties property.
*
* @return
* possible object is
* {@link CmisPropertiesType }
*
*/
public CmisPropertiesType getProperties() {
return properties;
}
/**
* Sets the value of the properties property.
*
* @param value
* allowed object is
* {@link CmisPropertiesType }
*
*/
public void setProperties(CmisPropertiesType value) {
this.properties = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy