org.xmpp.extensions.Author Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.10.04 at 01:10:24 PM KST
//
package org.xmpp.extensions;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="firstname" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="authornote" type="{http://www.xmpp.org/extensions}empty" minOccurs="0"/>
* <element name="org" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="jid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="uri" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"firstname",
"surname",
"authornote",
"org",
"email",
"jid",
"uri"
})
@XmlRootElement(name = "author")
public class Author {
@XmlElement(required = true)
protected String firstname;
@XmlElement(required = true)
protected String surname;
protected String authornote;
protected String org;
protected String email;
protected String jid;
protected String uri;
/**
* Gets the value of the firstname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFirstname() {
return firstname;
}
/**
* Sets the value of the firstname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFirstname(String value) {
this.firstname = value;
}
/**
* Gets the value of the surname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSurname() {
return surname;
}
/**
* Sets the value of the surname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSurname(String value) {
this.surname = value;
}
/**
* Gets the value of the authornote property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthornote() {
return authornote;
}
/**
* Sets the value of the authornote property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthornote(String value) {
this.authornote = value;
}
/**
* Gets the value of the org property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrg() {
return org;
}
/**
* Sets the value of the org property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrg(String value) {
this.org = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the jid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJid() {
return jid;
}
/**
* Sets the value of the jid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJid(String value) {
this.jid = value;
}
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUri() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUri(String value) {
this.uri = value;
}
}