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

net.jangaroo.apprunner.util.ServletConfigBase Maven / Gradle / Ivy

There is a newer version: 4.1.17
Show newest version
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