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 userAngaben; /** * Gets the value of the vollerName property. * * @return * possible object is * {@link String } * */ public String getVollerName() { return vollerName; } /** * Sets the value of the vollerName property. * * @param value * allowed object is * {@link String } * */ public void setVollerName(String value) { this.vollerName = value; } /** * Gets the value of the userName property. * * @return * possible object is * {@link String } * */ public String getUserName() { return userName; } /** * Sets the value of the userName property. * * @param value * allowed object is * {@link String } * */ public void setUserName(String value) { this.userName = value; } /** * Gets the value of the berechtigung property. * * @return * possible object is * {@link String } * */ public String getBerechtigung() { return berechtigung; } /** * Sets the value of the berechtigung property. * * @param value * allowed object is * {@link String } * */ public void setBerechtigung(String value) { this.berechtigung = value; } /** * Gets the value of the gueltigBis property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getGueltigBis() { return gueltigBis; } /** * Sets the value of the gueltigBis property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setGueltigBis(XMLGregorianCalendar value) { this.gueltigBis = value; } /** * Gets the value of the admin property. * */ public boolean isAdmin() { return admin; } /** * Sets the value of the admin property. * */ public void setAdmin(boolean value) { this.admin = value; } /** * Gets the value of the revisionsRecht property. * */ public boolean isRevisionsRecht() { return revisionsRecht; } /** * Sets the value of the revisionsRecht property. * */ public void setRevisionsRecht(boolean value) { this.revisionsRecht = value; } /** * Gets the value of the zentralregisterRecht property. * */ public boolean isZentralregisterRecht() { return zentralregisterRecht; } /** * Sets the value of the zentralregisterRecht property. * */ public void setZentralregisterRecht(boolean value) { this.zentralregisterRecht = value; } /** * Gets the value of the userAngaben property. * *

* 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 getUserAngaben() { if (userAngaben == null) { userAngaben = new ArrayList(); } return this.userAngaben; } }