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

de.svws_nrw.data.MultipleBinaryMultipartBody 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;

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

import java.util.List;

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

import io.swagger.v3.oas.annotations.media.ArraySchema;
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 MultipleBinaryMultipartBody {

	/** Die Binärdaten */
	@PartType(MediaType.APPLICATION_OCTET_STREAM)
	@ArraySchema(schema = @Schema(type = "string", format = "binary", description = "database file"))
	@FormParam("data")
	public List data;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy