org.appng.appngizer.model.xml.Subject Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.07.28 at 12:11:00 PM CEST
//
package org.appng.appngizer.model.xml;
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>
* <extension base="{http://www.appng.org/schema/appngizer}nameable">
* <sequence>
* <element name="realName" type="{http://www.appng.org/schema/appngizer}stringNotBlank"/>
* <element name="email" type="{http://www.appng.org/schema/appngizer}email"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="digest" type="{http://www.appng.org/schema/appngizer}stringNotBlank" minOccurs="0"/>
* <element name="timeZone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="language" type="{http://www.appng.org/schema/appngizer}stringNotBlank" minOccurs="0"/>
* <element name="type" type="{http://www.appng.org/schema/appngizer}userType"/>
* <element ref="{http://www.appng.org/schema/appngizer}groups" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"realName",
"email",
"description",
"digest",
"timeZone",
"language",
"type",
"groups"
})
@XmlRootElement(name = "subject")
public class Subject
extends Nameable
{
@XmlElement(required = true)
protected String realName;
@XmlElement(required = true)
protected String email;
protected String description;
protected String digest;
protected String timeZone;
protected String language;
@XmlElement(required = true)
protected UserType type;
protected Groups groups;
/**
* Gets the value of the realName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRealName() {
return realName;
}
/**
* Sets the value of the realName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRealName(String value) {
this.realName = 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 description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the digest property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDigest() {
return digest;
}
/**
* Sets the value of the digest property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDigest(String value) {
this.digest = value;
}
/**
* Gets the value of the timeZone property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTimeZone() {
return timeZone;
}
/**
* Sets the value of the timeZone property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTimeZone(String value) {
this.timeZone = value;
}
/**
* Gets the value of the language property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguage(String value) {
this.language = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link UserType }
*
*/
public UserType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link UserType }
*
*/
public void setType(UserType value) {
this.type = value;
}
/**
* Gets the value of the groups property.
*
* @return
* possible object is
* {@link Groups }
*
*/
public Groups getGroups() {
return groups;
}
/**
* Sets the value of the groups property.
*
* @param value
* allowed object is
* {@link Groups }
*
*/
public void setGroups(Groups value) {
this.groups = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy