io.quarkus.resteasy.runtime.NonJaxRsClassMappings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-resteasy Show documentation
Show all versions of quarkus-resteasy Show documentation
REST endpoint framework implementing JAX-RS and more
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;
}
}