This project has retired. For details please refer to its Attic page.
GetACLResponse xref

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.XmlElement;
7   import javax.xml.bind.annotation.XmlRootElement;
8   import javax.xml.bind.annotation.XmlType;
9   
10  
11  /**
12   * <p>Java class for anonymous complex type.
13   * 
14   * <p>The following schema fragment specifies the expected content contained within this class.
15   * 
16   * <pre>
17   * &lt;complexType>
18   *   &lt;complexContent>
19   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20   *       &lt;sequence>
21   *         &lt;element name="ACL" type="{http://docs.oasis-open.org/ns/cmis/messaging/200908/}cmisACLType"/>
22   *       &lt;/sequence>
23   *     &lt;/restriction>
24   *   &lt;/complexContent>
25   * &lt;/complexType>
26   * </pre>
27   * 
28   * 
29   */
30  @XmlAccessorType(XmlAccessType.FIELD)
31  @XmlType(name = "", propOrder = {
32      "acl"
33  })
34  @XmlRootElement(name = "getACLResponse")
35  public class GetACLResponse {
36  
37      @XmlElement(name = "ACL", required = true)
38      protected CmisACLType acl;
39  
40      /**
41       * Gets the value of the acl property.
42       * 
43       * @return
44       *     possible object is
45       *     {@link CmisACLType }
46       *     
47       */
48      public CmisACLType getACL() {
49          return acl;
50      }
51  
52      /**
53       * Sets the value of the acl property.
54       * 
55       * @param value
56       *     allowed object is
57       *     {@link CmisACLType }
58       *     
59       */
60      public void setACL(CmisACLType value) {
61          this.acl = value;
62      }
63  
64  }