de.svws_nrw.schulen.v1.data.SchuldateiOrganisationseinheitErreichbarkeit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svws-schulen Show documentation
Show all versions of svws-schulen Show documentation
Diese Bibliothek ermöglicht den Zugriff auf die Schulinformationen, wie sie vom Web-Service des Landes NRW bereitgestellt werden.
The newest version!
package de.svws_nrw.schulen.v1.data;
import de.svws_nrw.transpiler.TranspilerDTO;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
import jakarta.xml.bind.annotation.XmlRootElement;
/**
* Die Klasse beschreibt eine Erreichbarkeit für eine Organisationseinheit
* der Schuldatei.
*/
@XmlRootElement
@Schema(description = "eine Erreichbarkeit einer Organisationseinheit der Schuldatei.")
@TranspilerDTO
public class SchuldateiOrganisationseinheitErreichbarkeit extends SchuldateiEintrag {
/** Die Schulnummer. */
@Schema(description = "die Schulnummer", example = "100001")
public @NotNull String schulnummer = "";
/** Die ID des Erreichbarkeits-Eintrags. */
@Schema(description = "die ID des Erreichbarkeits-Eintrags", example = "4711")
public Integer id;
/** Die Nummer der Liegenschaft der Organisationseinheit */
@Schema(description = "Die Nummer der Liegenschaft der Organisationseinheit", example = "1")
public int liegenschaft;
/** Kommgruppe des Eintrags*/
@Schema(description = "Kommgruppe des Eintrags")
public @NotNull String kommgruppe = "";
/** codekey des Eintrags */
@Schema(description = "codekey des Eintrags", example = "01")
public @NotNull String codekey = "";
/** codewert des Eintrags */
@Schema(description = "codewert des Eintrags", example = "01234/1243501")
public @NotNull String codewert = "";
/**
* Erstellt einen neuen Eintrag zur Erreichbarkeit einer Organisationseinheit der Schuldatei
*/
public SchuldateiOrganisationseinheitErreichbarkeit() {
// Die Initialisierung mit Defaults erfolgt direkt über die Attribute
}
}