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.XmlType; /** * Dieser Typ erweitert TEintragMitStatus um den Reservierungsnachweis. Er wird in der Antwortnachricht von Prozessen verwendet, die eine Änderung von Registerinhalten nachsichziehen können. * *
Java class for TEintragMitStatusUndRN complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TEintragMitStatusUndRN">
* <complexContent>
* <extension base="{http://www.fh-giessen.de/epr/WSRegister/v1}TEintragMitStatus">
* <sequence>
* <element name="Reservierungsnachweis" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEintragMitStatusUndRN", propOrder = {
"reservierungsnachweis"
})
public class TEintragMitStatusUndRN
extends TEintragMitStatus
{
@XmlElement(name = "Reservierungsnachweis", required = true)
protected byte[] reservierungsnachweis;
/**
* Gets the value of the reservierungsnachweis property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getReservierungsnachweis() {
return reservierungsnachweis;
}
/**
* Sets the value of the reservierungsnachweis property.
*
* @param value
* allowed object is
* byte[]
*/
public void setReservierungsnachweis(byte[] value) {
this.reservierungsnachweis = ((byte[]) value);
}
}