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}Delete"/>
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        "delete"
033    })
034    @XmlRootElement(name = "DeleteResourceProperties")
035    public class DeleteResourceProperties {
036    
037        @XmlElement(name = "Delete", required = true)
038        protected DeleteType delete;
039    
040        /**
041         * Gets the value of the delete property.
042         * 
043         * @return
044         *     possible object is
045         *     {@link DeleteType }
046         *     
047         */
048        public DeleteType getDelete() {
049            return delete;
050        }
051    
052        /**
053         * Sets the value of the delete property.
054         * 
055         * @param value
056         *     allowed object is
057         *     {@link DeleteType }
058         *     
059         */
060        public void setDelete(DeleteType value) {
061            this.delete = value;
062        }
063    
064    }