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.XmlType; /** * Das Registerverfahren kann die Menge der Suchergebnisse begrenzen. Dieser Typ beschreibt * die Informationen über den Status des Suchergebnisses. * *

Java class for TSuchergebnisStatus complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TSuchergebnisStatus">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ErgebnisLimitiert" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="Anzahl" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TSuchergebnisStatus", propOrder = { "ergebnisLimitiert", "anzahl" }) public class TSuchergebnisStatus { @XmlElement(name = "ErgebnisLimitiert") protected boolean ergebnisLimitiert; @XmlElement(name = "Anzahl") protected Integer anzahl; /** * Gets the value of the ergebnisLimitiert property. * */ public boolean isErgebnisLimitiert() { return ergebnisLimitiert; } /** * Sets the value of the ergebnisLimitiert property. * */ public void setErgebnisLimitiert(boolean value) { this.ergebnisLimitiert = value; } /** * Gets the value of the anzahl property. * * @return * possible object is * {@link Integer } * */ public Integer getAnzahl() { return anzahl; } /** * Sets the value of the anzahl property. * * @param value * allowed object is * {@link Integer } * */ public void setAnzahl(Integer value) { this.anzahl = value; } }