package de.fh_giessen.epr.wsregister.v1; 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.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * Dieser Typ beschreibt die Angaben zu einem Benutzer. * *
Java class for TUserInfo complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TUserInfo">
* <complexContent>
* <extension base="{http://www.fh-giessen.de/epr/WSRegister/v1}TUserInfoSchreiben">
* <sequence>
* <element name="BerechtigungsnachweisGueltigBis" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="Locked" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TUserInfo", propOrder = {
"berechtigungsnachweisGueltigBis",
"locked"
})
public class TUserInfo
extends TUserInfoSchreiben
{
@XmlElement(name = "BerechtigungsnachweisGueltigBis")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar berechtigungsnachweisGueltigBis;
@XmlElement(name = "Locked")
protected boolean locked;
/**
* Gets the value of the berechtigungsnachweisGueltigBis property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getBerechtigungsnachweisGueltigBis() {
return berechtigungsnachweisGueltigBis;
}
/**
* Sets the value of the berechtigungsnachweisGueltigBis property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setBerechtigungsnachweisGueltigBis(XMLGregorianCalendar value) {
this.berechtigungsnachweisGueltigBis = value;
}
/**
* Gets the value of the locked property.
*
*/
public boolean isLocked() {
return locked;
}
/**
* Sets the value of the locked property.
*
*/
public void setLocked(boolean value) {
this.locked = value;
}
}