001//
002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004// Any modifications to this file will be lost upon recompilation of the source schema. 
005// Generated on: 2015.08.26 at 05:38:23 AM CEST 
006//
007
008
009package org.opends.dsml.protocol;
010
011import java.util.ArrayList;
012import java.util.List;
013import javax.xml.bind.annotation.XmlAccessType;
014import javax.xml.bind.annotation.XmlAccessorType;
015import javax.xml.bind.annotation.XmlElement;
016import javax.xml.bind.annotation.XmlType;
017
018
019/**
020 * <p>Java class for AttributeDescriptions complex type.
021 * 
022 * <p>The following schema fragment specifies the expected content contained within this class.
023 * 
024 * <pre>
025 * &lt;complexType name="AttributeDescriptions">
026 *   &lt;complexContent>
027 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
028 *       &lt;sequence maxOccurs="unbounded" minOccurs="0">
029 *         &lt;element name="attribute" type="{urn:oasis:names:tc:DSML:2:0:core}AttributeDescription"/>
030 *       &lt;/sequence>
031 *     &lt;/restriction>
032 *   &lt;/complexContent>
033 * &lt;/complexType>
034 * </pre>
035 * 
036 * 
037 */
038@XmlAccessorType(XmlAccessType.FIELD)
039@XmlType(name = "AttributeDescriptions", namespace = "urn:oasis:names:tc:DSML:2:0:core", propOrder = {
040    "attribute"
041})
042public class AttributeDescriptions {
043
044    @XmlElement(namespace = "urn:oasis:names:tc:DSML:2:0:core")
045    protected List<AttributeDescription> attribute;
046
047    /**
048     * Gets the value of the attribute property.
049     * 
050     * <p>
051     * This accessor method returns a reference to the live list,
052     * not a snapshot. Therefore any modification you make to the
053     * returned list will be present inside the JAXB object.
054     * This is why there is not a <CODE>set</CODE> method for the attribute property.
055     * 
056     * <p>
057     * For example, to add a new item, do as follows:
058     * <pre>
059     *    getAttribute().add(newItem);
060     * </pre>
061     * 
062     * 
063     * <p>
064     * Objects of the following type(s) are allowed in the list
065     * {@link AttributeDescription }
066     * 
067     * 
068     */
069    public List<AttributeDescription> getAttribute() {
070        if (attribute == null) {
071            attribute = new ArrayList<AttributeDescription>();
072        }
073        return this.attribute;
074    }
075
076}