001    
002    package org.oasis_open.docs.wsrf.rp_2;
003    
004    import java.util.ArrayList;
005    import java.util.List;
006    import javax.xml.bind.annotation.XmlAccessType;
007    import javax.xml.bind.annotation.XmlAccessorType;
008    import javax.xml.bind.annotation.XmlElement;
009    import javax.xml.bind.annotation.XmlRootElement;
010    import javax.xml.bind.annotation.XmlType;
011    import javax.xml.namespace.QName;
012    
013    
014    /**
015     * <p>Java class for anonymous complex type.
016     * 
017     * <p>The following schema fragment specifies the expected content contained within this class.
018     * 
019     * <pre>
020     * &lt;complexType>
021     *   &lt;complexContent>
022     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
023     *       &lt;sequence>
024     *         &lt;element name="ResourceProperty" type="{http://www.w3.org/2001/XMLSchema}QName" maxOccurs="unbounded"/>
025     *       &lt;/sequence>
026     *     &lt;/restriction>
027     *   &lt;/complexContent>
028     * &lt;/complexType>
029     * </pre>
030     * 
031     * 
032     */
033    @XmlAccessorType(XmlAccessType.FIELD)
034    @XmlType(name = "", propOrder = {
035        "resourceProperty"
036    })
037    @XmlRootElement(name = "GetMultipleResourceProperties")
038    public class GetMultipleResourceProperties {
039    
040        @XmlElement(name = "ResourceProperty", required = true)
041        protected List<QName> resourceProperty;
042    
043        /**
044         * Gets the value of the resourceProperty property.
045         * 
046         * <p>
047         * This accessor method returns a reference to the live list,
048         * not a snapshot. Therefore any modification you make to the
049         * returned list will be present inside the JAXB object.
050         * This is why there is not a <CODE>set</CODE> method for the resourceProperty property.
051         * 
052         * <p>
053         * For example, to add a new item, do as follows:
054         * <pre>
055         *    getResourceProperty().add(newItem);
056         * </pre>
057         * 
058         * 
059         * <p>
060         * Objects of the following type(s) are allowed in the list
061         * {@link QName }
062         * 
063         * 
064         */
065        public List<QName> getResourceProperty() {
066            if (resourceProperty == null) {
067                resourceProperty = new ArrayList<QName>();
068            }
069            return this.resourceProperty;
070        }
071    
072    }