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