Class FilterMapping

java.lang.Object
org.eclipse.jetty.ee8.servlet.FilterMapping
All Implemented Interfaces:
Dumpable

@ManagedObject("Filter Mappings") public class FilterMapping extends Object implements Dumpable
  • Field Details Link icon

  • Constructor Details Link icon

    • FilterMapping Link icon

      public FilterMapping()
  • Method Details Link icon

    • dispatch Link icon

      public static javax.servlet.DispatcherType dispatch(String type)
      Dispatch type from name
      Parameters:
      type - the type name
      Returns:
      the dispatcher type
    • dispatch Link icon

      public static int dispatch(javax.servlet.DispatcherType type)
      Dispatch type from name
      Parameters:
      type - the dispatcher type
      Returns:
      the type constant (REQUEST, ASYNC, FORWARD, INCLUDE, or ERROR)
    • dispatch Link icon

      public static javax.servlet.DispatcherType dispatch(int type)
      Dispatch type from name
      Parameters:
      type - the dispatcher type
      Returns:
      the type constant (REQUEST, ASYNC, FORWARD, INCLUDE, or ERROR)
    • appliesTo Link icon

      public boolean appliesTo(javax.servlet.DispatcherType t)
    • isDefaultDispatches Link icon

      public boolean isDefaultDispatches()
    • getFilterName Link icon

      @ManagedAttribute(value="filter name", readonly=true) public String getFilterName()
      Returns:
      Returns the filterName.
    • getPathSpecs Link icon

      @ManagedAttribute(value="url patterns", readonly=true) public String[] getPathSpecs()
      Returns:
      Returns the pathSpec.
    • setDispatcherTypes Link icon

      public void setDispatcherTypes(EnumSet<javax.servlet.DispatcherType> dispatcherTypes)
    • getDispatcherTypes Link icon

      public EnumSet<javax.servlet.DispatcherType> getDispatcherTypes()
    • setDispatches Link icon

      public void setDispatches(int dispatches)
      Parameters:
      dispatches - The dispatches to set.
      See Also:
    • setFilterName Link icon

      public void setFilterName(String filterName)
      Parameters:
      filterName - The filterName to set.
    • setPathSpecs Link icon

      public void setPathSpecs(String[] pathSpecs)
      Parameters:
      pathSpecs - The Path specifications to which this filter should be mapped.
    • setPathSpec Link icon

      public void setPathSpec(String pathSpec)
      Parameters:
      pathSpec - The pathSpec to set.
    • getServletNames Link icon

      @ManagedAttribute(value="servlet names", readonly=true) public String[] getServletNames()
      Returns:
      Returns the servletName.
    • setServletNames Link icon

      public void setServletNames(String[] servletNames)
      Parameters:
      servletNames - Maps the named filter to multiple servlets
      See Also:
    • setServletName Link icon

      public void setServletName(String servletName)
      Parameters:
      servletName - Maps the named filter to a single servlet
      See Also:
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object
    • dump Link icon

      public void dump(Appendable out, String indent) throws IOException
      Description copied from interface: Dumpable
      Dump this object (and children) into an Appendable using the provided indent after any new lines. The indent should not be applied to the first object dumped.
      Specified by:
      dump in interface Dumpable
      Parameters:
      out - The appendable to dump to
      indent - The indent to apply after any new lines.
      Throws:
      IOException - if unable to write to Appendable
    • dump Link icon

      public String dump()
      Specified by:
      dump in interface Dumpable