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_tls;
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
016
017 /**
018 * <p>Java class for anonymous complex type.
019 *
020 * <p>The following schema fragment specifies the expected content contained within this class.
021 *
022 * <pre>
023 * <complexType>
024 * <complexContent>
025 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
026 * <sequence>
027 * <element name="required" type="{urn:ietf:params:xml:ns:xmpp-tls}empty" minOccurs="0"/>
028 * </sequence>
029 * </restriction>
030 * </complexContent>
031 * </complexType>
032 * </pre>
033 *
034 *
035 */
036 @XmlAccessorType(XmlAccessType.FIELD)
037 @XmlType(name = "", propOrder = {
038 "required"
039 })
040 @XmlRootElement(name = "starttls")
041 public class Starttls {
042
043 protected String required;
044
045 /**
046 * Gets the value of the required property.
047 *
048 * @return
049 * possible object is
050 * {@link String }
051 *
052 */
053 public String getRequired() {
054 return required;
055 }
056
057 /**
058 * Sets the value of the required property.
059 *
060 * @param value
061 * allowed object is
062 * {@link String }
063 *
064 */
065 public void setRequired(String value) {
066 this.required = value;
067 }
068
069 }