void |
Routable.after(java.lang.String path,
java.lang.String acceptType,
Filter filter) |
Maps a filter to be executed after any matching routes
|
void |
Routable.after(java.lang.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(java.lang.String path,
java.lang.String acceptType,
Filter... filters) |
Maps one or many filters to be executed after any matching routes
|
static void |
Spark.after(java.lang.String path,
Filter filter) |
Maps a filter to be executed after any matching routes
|
static void |
Spark.after(java.lang.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(java.lang.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(java.lang.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(java.lang.String path,
java.lang.String acceptType,
Filter filter) |
Maps a filter to be executed before any matching routes
|
void |
Routable.before(java.lang.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(java.lang.String path,
java.lang.String acceptType,
Filter... filters) |
Maps one or many filters to be executed before any matching routes
|
static void |
Spark.before(java.lang.String path,
Filter filter) |
Maps a filter to be executed before any matching routes
|
static void |
Spark.before(java.lang.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(java.lang.String path,
java.lang.String acceptType,
Filter filter) |
Wraps the filter in FilterImpl
|
(package private) static FilterImpl |
FilterImpl.create(java.lang.String path,
Filter filter) |
Wraps the filter in FilterImpl
|