de.svws_nrw.schulen.v1.data.Schuldatei 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 java.util.ArrayList;
import java.util.List;
import de.svws_nrw.transpiler.TranspilerDTO;
import io.swagger.v3.oas.annotations.media.ArraySchema;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
import jakarta.xml.bind.annotation.XmlRootElement;
/**
* Die Schuldatei.
*/
@XmlRootElement
@Schema(description = "die Schuldatei.")
@TranspilerDTO
public class Schuldatei {
/** Die Organisationseinheit des Eintrags */
@ArraySchema(schema = @Schema(implementation = SchuldateiOrganisationseinheit.class))
public @NotNull List organisationseinheit = new ArrayList<>();
/**
* Erstellt eine Schuldatei
*/
public Schuldatei() {
// Die Initialisierung mit Defaults erfolgt direkt über die Attribute
}
}