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.XmlAttribute;
007 import javax.xml.bind.annotation.XmlType;
008 import javax.xml.namespace.QName;
009
010
011 /**
012 * <p>Java class for DeleteType complex type.
013 *
014 * <p>The following schema fragment specifies the expected content contained within this class.
015 *
016 * <pre>
017 * <complexType name="DeleteType">
018 * <complexContent>
019 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
020 * <attribute name="ResourceProperty" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" />
021 * </restriction>
022 * </complexContent>
023 * </complexType>
024 * </pre>
025 *
026 *
027 */
028 @XmlAccessorType(XmlAccessType.FIELD)
029 @XmlType(name = "DeleteType")
030 public class DeleteType {
031
032 @XmlAttribute(name = "ResourceProperty", required = true)
033 protected QName resourceProperty;
034
035 /**
036 * Gets the value of the resourceProperty property.
037 *
038 * @return
039 * possible object is
040 * {@link QName }
041 *
042 */
043 public QName getResourceProperty() {
044 return resourceProperty;
045 }
046
047 /**
048 * Sets the value of the resourceProperty property.
049 *
050 * @param value
051 * allowed object is
052 * {@link QName }
053 *
054 */
055 public void setResourceProperty(QName value) {
056 this.resourceProperty = value;
057 }
058
059 }