package de.fh_giessen.epr.wsregister.v1; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * Dieser Typ enthält die Angaben zu einem Benutzer, die beim Anlegen eines Benutzerkontos angegeben werden. * *
Java class for TUserInfoSchreiben complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TUserInfoSchreiben">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="VollerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="UserName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Berechtigung" type="{http://www.fh-giessen.de/epr/WSRegister/v1}TBerechtigung" minOccurs="0"/>
* <element name="GueltigBis" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="Admin" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="RevisionsRecht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ZentralregisterRecht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="UserAngaben" type="{http://www.fh-giessen.de/epr/WSRegister/v1}TUserAngabe" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TUserInfoSchreiben", propOrder = {
"vollerName",
"userName",
"berechtigung",
"gueltigBis",
"admin",
"revisionsRecht",
"zentralregisterRecht",
"userAngaben"
})
@XmlSeeAlso({
TUserInfo.class
})
public class TUserInfoSchreiben {
@XmlElement(name = "VollerName", required = true)
protected String vollerName;
@XmlElement(name = "UserName", required = true)
protected String userName;
@XmlElement(name = "Berechtigung")
protected String berechtigung;
@XmlElement(name = "GueltigBis")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar gueltigBis;
@XmlElement(name = "Admin")
protected boolean admin;
@XmlElement(name = "RevisionsRecht")
protected boolean revisionsRecht;
@XmlElement(name = "ZentralregisterRecht")
protected boolean zentralregisterRecht;
@XmlElement(name = "UserAngaben")
protected List
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set method for the userAngaben property.
*
*
* For example, to add a new item, do as follows: *
* getUserAngaben().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TUserAngabe }
*
*
*/
public List