All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.svws_nrw.schulen.v1.data.Schuldatei Maven / Gradle / Ivy

Go to download

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
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy