package de.fh_giessen.epr.container.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *
Java class for anonymous complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="GSuchdaten" type="{http://www.fh-giessen.de/epr/Container/v1}TGSuchdaten"/>
* <element name="ESuchdaten" type="{http://www.fh-giessen.de/epr/Container/v1}TELSuchdaten"/>
* <element name="LSuchdaten" type="{http://www.fh-giessen.de/epr/Container/v1}TELSuchdaten"/>
* <element name="SSuchdaten" type="{http://www.fh-giessen.de/epr/Container/v1}TSSuchdaten"/>
* <element name="Eintragsnummer" type="{http://www.fh-giessen.de/epr/Container/v1}TEintragsId"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"gSuchdaten",
"eSuchdaten",
"lSuchdaten",
"sSuchdaten",
"eintragsnummer"
})
@XmlRootElement(name = "Suchdaten")
public class Suchdaten {
@XmlElement(name = "GSuchdaten")
protected TGSuchdaten gSuchdaten;
@XmlElement(name = "ESuchdaten")
protected TELSuchdaten eSuchdaten;
@XmlElement(name = "LSuchdaten")
protected TELSuchdaten lSuchdaten;
@XmlElement(name = "SSuchdaten")
protected TSSuchdaten sSuchdaten;
@XmlElement(name = "Eintragsnummer")
protected TEintragsId eintragsnummer;
/**
* Gets the value of the gSuchdaten property.
*
* @return
* possible object is
* {@link TGSuchdaten }
*
*/
public TGSuchdaten getGSuchdaten() {
return gSuchdaten;
}
/**
* Sets the value of the gSuchdaten property.
*
* @param value
* allowed object is
* {@link TGSuchdaten }
*
*/
public void setGSuchdaten(TGSuchdaten value) {
this.gSuchdaten = value;
}
/**
* Gets the value of the eSuchdaten property.
*
* @return
* possible object is
* {@link TELSuchdaten }
*
*/
public TELSuchdaten getESuchdaten() {
return eSuchdaten;
}
/**
* Sets the value of the eSuchdaten property.
*
* @param value
* allowed object is
* {@link TELSuchdaten }
*
*/
public void setESuchdaten(TELSuchdaten value) {
this.eSuchdaten = value;
}
/**
* Gets the value of the lSuchdaten property.
*
* @return
* possible object is
* {@link TELSuchdaten }
*
*/
public TELSuchdaten getLSuchdaten() {
return lSuchdaten;
}
/**
* Sets the value of the lSuchdaten property.
*
* @param value
* allowed object is
* {@link TELSuchdaten }
*
*/
public void setLSuchdaten(TELSuchdaten value) {
this.lSuchdaten = value;
}
/**
* Gets the value of the sSuchdaten property.
*
* @return
* possible object is
* {@link TSSuchdaten }
*
*/
public TSSuchdaten getSSuchdaten() {
return sSuchdaten;
}
/**
* Sets the value of the sSuchdaten property.
*
* @param value
* allowed object is
* {@link TSSuchdaten }
*
*/
public void setSSuchdaten(TSSuchdaten value) {
this.sSuchdaten = value;
}
/**
* Gets the value of the eintragsnummer property.
*
* @return
* possible object is
* {@link TEintragsId }
*
*/
public TEintragsId getEintragsnummer() {
return eintragsnummer;
}
/**
* Sets the value of the eintragsnummer property.
*
* @param value
* allowed object is
* {@link TEintragsId }
*
*/
public void setEintragsnummer(TEintragsId value) {
this.eintragsnummer = value;
}
}