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

de.svws_nrw.api.privileged.DBMultipartBodyDataOnly Maven / Gradle / Ivy

Go to download

Diese Bibliothek enthält die Java-Server-Definition der OpenApi-Schnittstelle für die Schulverwaltungssoftware in NRW

There is a newer version: 1.0.3
Show newest version
package de.svws_nrw.api.privileged;

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

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

import io.swagger.v3.oas.annotations.media.Schema;

/**
 * Diese Klasse wird als Multipart-Body eines Open-API-Aufrufs verwendet,
 * um eine Datenbank zu übertragen.
 */
public class DBMultipartBodyDataOnly {

	/** Die Datenbank als Binärdatei. */
	@PartType(MediaType.APPLICATION_OCTET_STREAM)
	@Schema(type = "string", format = "binary", description = "database file")
	@FormParam("database")
	public byte[] database;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy