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