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.XmlAnyElement;
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 * <any/>
022 * </sequence>
023 * </restriction>
024 * </complexContent>
025 * </complexType>
026 * </pre>
027 *
028 *
029 */
030 @XmlAccessorType(XmlAccessType.FIELD)
031 @XmlType(name = "", propOrder = {
032 "any"
033 })
034 @XmlRootElement(name = "PutResourcePropertyDocumentResponse")
035 public class PutResourcePropertyDocumentResponse {
036
037 @XmlAnyElement(lax = true)
038 protected Object any;
039
040 /**
041 * Gets the value of the any property.
042 *
043 * @return
044 * possible object is
045 * {@link Object }
046 *
047 */
048 public Object getAny() {
049 return any;
050 }
051
052 /**
053 * Sets the value of the any property.
054 *
055 * @param value
056 * allowed object is
057 * {@link Object }
058 *
059 */
060 public void setAny(Object value) {
061 this.any = value;
062 }
063
064 }