001 // 002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 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: 2011.11.18 at 02:23:57 PM EST 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.XmlAttribute; 014 import javax.xml.bind.annotation.XmlRootElement; 015 import javax.xml.bind.annotation.XmlType; 016 import javax.xml.bind.annotation.XmlValue; 017 018 019 /** 020 * <p>Java class for anonymous complex type. 021 * 022 * <p>The following schema fragment specifies the expected content contained within this class. 023 * 024 * <pre> 025 * <complexType> 026 * <simpleContent> 027 * <extension base="<http://www.w3.org/2001/XMLSchema>string"> 028 * <attribute name="mechanism" type="{http://www.w3.org/2001/XMLSchema}string" /> 029 * </extension> 030 * </simpleContent> 031 * </complexType> 032 * </pre> 033 * 034 * 035 */ 036 @XmlAccessorType(XmlAccessType.FIELD) 037 @XmlType(name = "", propOrder = { 038 "value" 039 }) 040 @XmlRootElement(name = "auth") 041 public class Auth { 042 043 @XmlValue 044 protected String value; 045 @XmlAttribute 046 protected String mechanism; 047 048 /** 049 * Gets the value of the value property. 050 * 051 * @return 052 * possible object is 053 * {@link String } 054 * 055 */ 056 public String getValue() { 057 return value; 058 } 059 060 /** 061 * Sets the value of the value property. 062 * 063 * @param value 064 * allowed object is 065 * {@link String } 066 * 067 */ 068 public void setValue(String value) { 069 this.value = value; 070 } 071 072 /** 073 * Gets the value of the mechanism property. 074 * 075 * @return 076 * possible object is 077 * {@link String } 078 * 079 */ 080 public String getMechanism() { 081 return mechanism; 082 } 083 084 /** 085 * Sets the value of the mechanism property. 086 * 087 * @param value 088 * allowed object is 089 * {@link String } 090 * 091 */ 092 public void setMechanism(String value) { 093 this.mechanism = value; 094 } 095 096 }