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

io.quarkus.vertx.http.deployment.BodyHandlerBuildItem Maven / Gradle / Ivy

package io.quarkus.vertx.http.deployment;

import io.quarkus.builder.item.SimpleBuildItem;
import io.vertx.core.Handler;
import io.vertx.ext.web.RoutingContext;

public final class BodyHandlerBuildItem extends SimpleBuildItem {
    private final Handler handler;

    public BodyHandlerBuildItem(Handler handler) {
        this.handler = handler;
    }

    public Handler getHandler() {
        return handler;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy