001 //
002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
003 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
004 // Any modifications to this file will be lost upon recompilation of the source schema.
005 // Generated on: 2010.09.28 at 11:27:21 AM GMT
006 //
007
008
009 package ietf.params.xml.ns.xmpp_sasl;
010
011 import javax.xml.bind.annotation.XmlAccessType;
012 import javax.xml.bind.annotation.XmlAccessorType;
013 import javax.xml.bind.annotation.XmlRootElement;
014 import javax.xml.bind.annotation.XmlType;
015 import javax.xml.bind.annotation.XmlValue;
016
017
018 /**
019 * <p>Java class for anonymous complex type.
020 *
021 * <p>The following schema fragment specifies the expected content contained within this class.
022 *
023 * <pre>
024 * <complexType>
025 * <simpleContent>
026 * <extension base="<http://www.w3.org/2001/XMLSchema>string">
027 * </extension>
028 * </simpleContent>
029 * </complexType>
030 * </pre>
031 *
032 *
033 */
034 @XmlAccessorType(XmlAccessType.FIELD)
035 @XmlType(name = "", propOrder = {
036 "value"
037 })
038 @XmlRootElement(name = "response")
039 public class Response {
040
041 @XmlValue
042 protected String value;
043
044 /**
045 * Gets the value of the value property.
046 *
047 * @return
048 * possible object is
049 * {@link String }
050 *
051 */
052 public String getValue() {
053 return value;
054 }
055
056 /**
057 * Sets the value of the value property.
058 *
059 * @param value
060 * allowed object is
061 * {@link String }
062 *
063 */
064 public void setValue(String value) {
065 this.value = value;
066 }
067
068 }