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: 2013.02.07 at 02:32:38 PM CET
006 //
007
008
009 package storage.rosternotes;
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.XmlSchemaType;
016 import javax.xml.bind.annotation.XmlType;
017 import javax.xml.bind.annotation.XmlValue;
018 import javax.xml.datatype.XMLGregorianCalendar;
019
020
021 /**
022 * <p>Java class for anonymous complex type.
023 *
024 * <p>The following schema fragment specifies the expected content contained within this class.
025 *
026 * <pre>
027 * <complexType>
028 * <simpleContent>
029 * <extension base="<http://www.w3.org/2001/XMLSchema>string">
030 * <attribute name="jid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
031 * <attribute name="cdate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
032 * <attribute name="mdate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
033 * </extension>
034 * </simpleContent>
035 * </complexType>
036 * </pre>
037 *
038 *
039 */
040 @XmlAccessorType(XmlAccessType.FIELD)
041 @XmlType(name = "", propOrder = {
042 "value"
043 })
044 @XmlRootElement(name = "note")
045 public class Note {
046
047 @XmlValue
048 protected String value;
049 @XmlAttribute(required = true)
050 protected String jid;
051 @XmlAttribute
052 @XmlSchemaType(name = "dateTime")
053 protected XMLGregorianCalendar cdate;
054 @XmlAttribute
055 @XmlSchemaType(name = "dateTime")
056 protected XMLGregorianCalendar mdate;
057
058 /**
059 * Gets the value of the value property.
060 *
061 * @return
062 * possible object is
063 * {@link String }
064 *
065 */
066 public String getValue() {
067 return value;
068 }
069
070 /**
071 * Sets the value of the value property.
072 *
073 * @param value
074 * allowed object is
075 * {@link String }
076 *
077 */
078 public void setValue(String value) {
079 this.value = value;
080 }
081
082 /**
083 * Gets the value of the jid property.
084 *
085 * @return
086 * possible object is
087 * {@link String }
088 *
089 */
090 public String getJid() {
091 return jid;
092 }
093
094 /**
095 * Sets the value of the jid property.
096 *
097 * @param value
098 * allowed object is
099 * {@link String }
100 *
101 */
102 public void setJid(String value) {
103 this.jid = value;
104 }
105
106 /**
107 * Gets the value of the cdate property.
108 *
109 * @return
110 * possible object is
111 * {@link XMLGregorianCalendar }
112 *
113 */
114 public XMLGregorianCalendar getCdate() {
115 return cdate;
116 }
117
118 /**
119 * Sets the value of the cdate property.
120 *
121 * @param value
122 * allowed object is
123 * {@link XMLGregorianCalendar }
124 *
125 */
126 public void setCdate(XMLGregorianCalendar value) {
127 this.cdate = value;
128 }
129
130 /**
131 * Gets the value of the mdate property.
132 *
133 * @return
134 * possible object is
135 * {@link XMLGregorianCalendar }
136 *
137 */
138 public XMLGregorianCalendar getMdate() {
139 return mdate;
140 }
141
142 /**
143 * Sets the value of the mdate property.
144 *
145 * @param value
146 * allowed object is
147 * {@link XMLGregorianCalendar }
148 *
149 */
150 public void setMdate(XMLGregorianCalendar value) {
151 this.mdate = value;
152 }
153
154 }