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

io.quarkus.vertx.http.runtime.BasicRoute Maven / Gradle / Ivy

package io.quarkus.vertx.http.runtime;

import java.util.function.Consumer;
import java.util.function.Function;

import io.vertx.ext.web.Route;
import io.vertx.ext.web.Router;

public class BasicRoute implements Function {

    private String path;

    private Integer order;

    private Consumer customizer;

    public BasicRoute(String path) {
        this(path, null);
    }

    public BasicRoute(String path, Integer order) {
        this.path = path;
        this.order = order;
    }

    public BasicRoute(String path, Integer order, Consumer customizer) {
        this.path = path;
        this.order = order;
        this.customizer = customizer;
    }

    public BasicRoute() {
    }

    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }

    public Integer getOrder() {
        return order;
    }

    public void setOrder(Integer order) {
        this.order = order;
    }

    public Consumer getCustomizer() {
        return customizer;
    }

    public BasicRoute setCustomizer(Consumer customizer) {
        this.customizer = customizer;
        return this;
    }

    @Override
    public Route apply(Router router) {
        Route route = router.route(path);
        if (order != null) {
            route.order(order);
        }
        if (customizer != null) {
            customizer.accept(route);
        }
        return route;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy