1
2 package org.apache.chemistry.opencmis.commons.impl.jaxb;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlRootElement;
7 import javax.xml.bind.annotation.XmlType;
8
9
10 /**
11 * <p>Java class for anonymous complex type.
12 *
13 * <p>The following schema fragment specifies the expected content contained within this class.
14 *
15 * <pre>
16 * <complexType>
17 * <complexContent>
18 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19 * <sequence>
20 * <element name="type" type="{http://docs.oasis-open.org/ns/cmis/core/200908/}cmisTypeDefinitionType" minOccurs="0"/>
21 * </sequence>
22 * </restriction>
23 * </complexContent>
24 * </complexType>
25 * </pre>
26 *
27 *
28 */
29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "", propOrder = {
31 "type"
32 })
33 @XmlRootElement(name = "getTypeDefinitionResponse")
34 public class GetTypeDefinitionResponse {
35
36 protected CmisTypeDefinitionType type;
37
38 /**
39 * Gets the value of the type property.
40 *
41 * @return
42 * possible object is
43 * {@link CmisTypeDefinitionType }
44 *
45 */
46 public CmisTypeDefinitionType getType() {
47 return type;
48 }
49
50 /**
51 * Sets the value of the type property.
52 *
53 * @param value
54 * allowed object is
55 * {@link CmisTypeDefinitionType }
56 *
57 */
58 public void setType(CmisTypeDefinitionType value) {
59 this.type = value;
60 }
61
62 }