001
002 package org.oasis_open.docs.wsrf.rp_2;
003
004 import javax.xml.bind.annotation.XmlAccessType;
005 import javax.xml.bind.annotation.XmlAccessorType;
006 import javax.xml.bind.annotation.XmlElement;
007 import javax.xml.bind.annotation.XmlRootElement;
008 import javax.xml.bind.annotation.XmlType;
009
010
011 /**
012 * <p>Java class for anonymous complex type.
013 *
014 * <p>The following schema fragment specifies the expected content contained within this class.
015 *
016 * <pre>
017 * <complexType>
018 * <complexContent>
019 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
020 * <sequence>
021 * <element ref="{http://docs.oasis-open.org/wsrf/rp-2}Insert"/>
022 * </sequence>
023 * </restriction>
024 * </complexContent>
025 * </complexType>
026 * </pre>
027 *
028 *
029 */
030 @XmlAccessorType(XmlAccessType.FIELD)
031 @XmlType(name = "", propOrder = {
032 "insert"
033 })
034 @XmlRootElement(name = "InsertResourceProperties")
035 public class InsertResourceProperties {
036
037 @XmlElement(name = "Insert", required = true)
038 protected InsertType insert;
039
040 /**
041 * Gets the value of the insert property.
042 *
043 * @return
044 * possible object is
045 * {@link InsertType }
046 *
047 */
048 public InsertType getInsert() {
049 return insert;
050 }
051
052 /**
053 * Sets the value of the insert property.
054 *
055 * @param value
056 * allowed object is
057 * {@link InsertType }
058 *
059 */
060 public void setInsert(InsertType value) {
061 this.insert = value;
062 }
063
064 }