io.quarkus.resteasy.reactive.server.runtime.ResteasyReactiveServerRuntimeConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-rest Show documentation
Show all versions of quarkus-rest Show documentation
A Jakarta REST implementation utilizing build time processing and Vert.x. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it.
The newest version!
package io.quarkus.resteasy.reactive.server.runtime;
import java.nio.charset.Charset;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;
import io.smallrye.config.WithDefault;
@ConfigMapping(prefix = "quarkus.rest")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public interface ResteasyReactiveServerRuntimeConfig {
/**
* Input part configuration.
*/
MultipartConfigGroup multipart();
interface MultipartConfigGroup {
/**
* Input part configuration.
*/
InputPartConfigGroup inputPart();
}
interface InputPartConfigGroup {
/**
* Default charset.
*/
@WithDefault("UTF-8")
Charset defaultCharset();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy