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; /** * Informationen über einen Sperrvermerk * *
Java class for TSperrvermerkInfo complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TSperrvermerkInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Art" type="{http://www.fh-giessen.de/epr/Container/v1}TSperrvermerkArt"/>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="DatumFristAblauf" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TSperrvermerkInfo", propOrder = {
"art",
"name",
"datumFristAblauf"
})
public class TSperrvermerkInfo {
@XmlElement(name = "Art", required = true)
protected String art;
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "DatumFristAblauf")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar datumFristAblauf;
/**
* Gets the value of the art property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArt() {
return art;
}
/**
* Sets the value of the art property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArt(String value) {
this.art = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the datumFristAblauf property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatumFristAblauf() {
return datumFristAblauf;
}
/**
* Sets the value of the datumFristAblauf property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatumFristAblauf(XMLGregorianCalendar value) {
this.datumFristAblauf = value;
}
}