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     * &lt;complexType>
018     *   &lt;complexContent>
019     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
020     *       &lt;sequence>
021     *         &lt;element ref="{http://docs.oasis-open.org/wsrf/rp-2}Update"/>
022     *       &lt;/sequence>
023     *     &lt;/restriction>
024     *   &lt;/complexContent>
025     * &lt;/complexType>
026     * </pre>
027     * 
028     * 
029     */
030    @XmlAccessorType(XmlAccessType.FIELD)
031    @XmlType(name = "", propOrder = {
032        "update"
033    })
034    @XmlRootElement(name = "UpdateResourceProperties")
035    public class UpdateResourceProperties {
036    
037        @XmlElement(name = "Update", required = true)
038        protected UpdateType update;
039    
040        /**
041         * Gets the value of the update property.
042         * 
043         * @return
044         *     possible object is
045         *     {@link UpdateType }
046         *     
047         */
048        public UpdateType getUpdate() {
049            return update;
050        }
051    
052        /**
053         * Sets the value of the update property.
054         * 
055         * @param value
056         *     allowed object is
057         *     {@link UpdateType }
058         *     
059         */
060        public void setUpdate(UpdateType value) {
061            this.update = value;
062        }
063    
064    }