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