Class WebXmlFilterMapping

java.lang.Object
cloud.piranha.core.api.WebXmlFilterMapping

public class WebXmlFilterMapping extends Object
A filter-mapping inside of web.xml/web-fragment.xml.
Author:
Manfred Riem ([email protected])
  • Constructor Details

    • WebXmlFilterMapping

      public WebXmlFilterMapping()
  • Method Details

    • getDispatchers

      public List<String> getDispatchers()
      Get the dispatchers.
      Returns:
      the dispatchers.
    • getFilterName

      public String getFilterName()
      Get the filter name.
      Returns:
      the filter name.
    • getServletNames

      public List<String> getServletNames()
      Get the servlet names.
      Returns:
      the servlet names.
    • getUrlPatterns

      public List<String> getUrlPatterns()
      Get the URL patterns.
      Returns:
      the URL patterns.
    • setDispatchers

      public void setDispatchers(List<String> dispatchers)
      Set the dispatchers.
      Parameters:
      dispatchers - the dispatchers.
    • setFilterName

      public void setFilterName(String filterName)
      Set the filter name.
      Parameters:
      filterName - the filter name.
    • setServletNames

      public void setServletNames(List<String> servletNames)
      Set the servlet names.
      Parameters:
      servletNames - the servlet names.
    • setUrlPatterns

      public void setUrlPatterns(List<String> urlPatterns)
      Set the URL patterns.
      Parameters:
      urlPatterns - the URL patterns.