net.jangaroo.apprunner.util.ServletConfigBase Maven / Gradle / Ivy
package net.jangaroo.apprunner.util;
public class ServletConfigBase {
private String pathSpec;
public ServletConfigBase() {
}
public ServletConfigBase(String pathSpec) {
this.pathSpec = pathSpec;
}
/**
* Returns the pattern that determines which requests are handled by the servlet.
*/
public String getPathSpec() {
return pathSpec;
}
/**
* Sets the pattern that determines which requests are handled by the servlet.
*/
public void setPathSpec(String pathSpec) {
this.pathSpec = pathSpec;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy