Class FilterMap

  • All Implemented Interfaces:
    Serializable

    public class FilterMap
    extends Object
    implements Serializable
    Representation of a filter mapping for a web application, as represented in a <filter-mapping> element in the deployment descriptor. Each filter mapping must contain a filter name plus either a URL pattern or a servlet name.
    Version:
    $Revision: 1.3 $ $Date: 2007/01/23 00:06:56 $
    Author:
    Craig R. McClanahan
    See Also:
    Serialized Form
    • Constructor Detail

      • FilterMap

        public FilterMap()
    • Method Detail

      • getFilterName

        public String getFilterName()
      • setFilterName

        public void setFilterName​(String filterName)
      • getServletName

        public String getServletName()
      • setServletName

        public void setServletName​(String servletName)
      • getURLPattern

        public String getURLPattern()
      • setURLPattern

        public void setURLPattern​(String urlPattern)
      • getDispatcherTypes

        public Set<jakarta.servlet.DispatcherType> getDispatcherTypes()
      • setDispatcherTypes

        public void setDispatcherTypes​(Set<jakarta.servlet.DispatcherType> dispatcherTypes)
      • toString

        public String toString()
        Render a String representation of this object.
        Overrides:
        toString in class Object