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

io.quarkus.vertx.http.runtime.devmode.RouteDescription Maven / Gradle / Ivy

package io.quarkus.vertx.http.runtime.devmode;

import java.util.ArrayList;
import java.util.List;

public class RouteDescription {

    private String basePath;
    private List calls = new ArrayList<>();

    public RouteDescription() {
    }

    public RouteDescription(String basePath) {
        this.basePath = basePath;
    }

    public String getBasePath() {
        return basePath;
    }

    public void setBasePath(String basePath) {
        this.basePath = basePath;
    }

    public List getCalls() {
        return calls;
    }

    public void addCall(RouteMethodDescription call) {
        this.calls.add(call);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy