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

io.quarkus.vertx.web.runtime.RouteMatcher Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.quarkus.vertx.web.runtime;

public class RouteMatcher {

    private final String path;
    private final String regex;
    private final String[] produces;
    private final String[] consumes;
    private final String[] methods;
    private final int order;

    public RouteMatcher(String path, String regex, String[] produces, String[] consumes, String[] methods, int order) {
        this.path = path;
        this.regex = regex;
        this.produces = produces;
        this.consumes = consumes;
        this.methods = methods;
        this.order = order;
    }

    public String getPath() {
        return path;
    }

    public String getRegex() {
        return regex;
    }

    public String[] getProduces() {
        return produces;
    }

    public String[] getConsumes() {
        return consumes;
    }

    public String[] getMethods() {
        return methods;
    }

    public int getOrder() {
        return order;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy