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

de.svws_nrw.data.datenaustausch.UntisGPU001MultipartBody Maven / Gradle / Ivy

Go to download

Diese Bibliothek unterstützt bei dem Zugriff auf Datenbanken für die Schulverwaltungssoftware in NRW

There is a newer version: 1.0.1
Show newest version
package de.svws_nrw.data.datenaustausch;

import jakarta.ws.rs.FormParam;
import jakarta.ws.rs.core.MediaType;

import org.jboss.resteasy.annotations.providers.multipart.PartType;

import de.svws_nrw.core.data.stundenplan.StundenplanListeEintragMinimal;
import io.swagger.v3.oas.annotations.media.Schema;

/**
 * Diese Klasse wird als Multipart-Body eines Open-API-Aufrufs verwendet,
 * um Binärdaten zu übertragen.
 */
public class UntisGPU001MultipartBody {

	/** die Minimal-Informationen zu dem Stundenplan */
	@PartType(MediaType.TEXT_PLAIN)
	@Schema(description = "die Minimal-Informationen zu dem Stundenplan", implementation = StundenplanListeEintragMinimal.class)
	@FormParam("entry")
	public String entry;

	/** Die Textdatei */
	@PartType(MediaType.APPLICATION_OCTET_STREAM)
	@Schema(type = "string", format = "binary", description = "file")
	@FormParam("data")
	public byte[] data;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy