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

io.quarkus.vertx.http.deployment.devmode.console.FlashScopeHandler Maven / Gradle / Ivy

package io.quarkus.vertx.http.deployment.devmode.console;

import io.quarkus.devconsole.runtime.spi.FlashScopeUtil;
import io.vertx.core.Handler;
import io.vertx.ext.web.RoutingContext;

public class FlashScopeHandler implements Handler {

    @Override
    public void handle(RoutingContext event) {
        FlashScopeUtil.handleFlashCookie(event);
        event.next();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy