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

io.quarkus.resteasy.runtime.NonJaxRsClassMappings Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkus.resteasy.runtime;

import java.util.Map;

public class NonJaxRsClassMappings {

    private String basePath;
    private Map methodNameToPath;

    public String getBasePath() {
        return basePath;
    }

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

    public Map getMethodNameToPath() {
        return methodNameToPath;
    }

    public void setMethodNameToPath(Map methodNameToPath) {
        this.methodNameToPath = methodNameToPath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy