Uses of Interface
spark.Filter

Packages that use Filter
Package
Description
 
  • Uses of Filter in spark

    Classes in spark that implement Filter
    Modifier and Type
    Class
    Description
    class 
    FilterImpl is created from a path, acceptType and Filter.
    Fields in spark declared as Filter
    Modifier and Type
    Field
    Description
    private Filter
    FilterImpl.delegate
     
    Methods in spark with parameters of type Filter
    Modifier and Type
    Method
    Description
    void
    Routable.after(String path, String acceptType, Filter filter)
    Maps a filter to be executed after any matching routes
    void
    Routable.after(String path, Filter filter)
    Maps a filter to be executed after any matching routes
    void
    Routable.after(Filter filter)
    Maps a filter to be executed after any matching routes
    static void
    Spark.after(String path, String acceptType, Filter... filters)
    Maps one or many filters to be executed after any matching routes
    static void
    Spark.after(String path, Filter filter)
    Maps a filter to be executed after any matching routes
    static void
    Spark.after(String path, Filter... filters)
    Maps an array of filters to be executed after any matching routes
    static void
    Spark.after(Filter... filters)
    Maps one or many filters to be executed after any matching routes
    void
    Routable.afterAfter(String path, Filter filter)
    Maps a filter to be executed after any matching routes even if the route throws any exception
    void
    Routable.afterAfter(Filter filter)
    Maps a filter to be executed after any matching routes even if the route throws any exception
    static void
    Spark.afterAfter(String path, Filter filter)
    Execute after route even if the route throws exception
    static void
    Spark.afterAfter(Filter filter)
    Execute after any matching route even if the route throws exception
    void
    Routable.before(String path, String acceptType, Filter filter)
    Maps a filter to be executed before any matching routes
    void
    Routable.before(String path, Filter filter)
    Maps a filter to be executed before any matching routes
    void
    Routable.before(Filter filter)
    Maps a filter to be executed before any matching routes
    static void
    Spark.before(String path, String acceptType, Filter... filters)
    Maps one or many filters to be executed before any matching routes
    static void
    Spark.before(String path, Filter filter)
    Maps a filter to be executed before any matching routes
    static void
    Spark.before(String path, Filter... filters)
    Maps an array of filters to be executed before any matching routes
    static void
    Spark.before(Filter... filters)
    Maps one or many filters to be executed before any matching routes
    (package private) static FilterImpl
    FilterImpl.create(String path, String acceptType, Filter filter)
    Wraps the filter in FilterImpl
    (package private) static FilterImpl
    FilterImpl.create(String path, Filter filter)
    Wraps the filter in FilterImpl
    Constructors in spark with parameters of type Filter
    Modifier
    Constructor
    Description
    protected
    FilterImpl(String path, String acceptType, Filter filter)