public interface SpiRoutes
Route matching and filter handling.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceA route entry.static classPath and splat/wildcard parameters. -
Method Summary
Modifier and TypeMethodDescriptionvoidafter(String pathInfo, SpiContext ctx)Execute all appropriate after filters for the given request URI.voidbefore(String pathInfo, SpiContext ctx)Execute all appropriate before filters for the given request URI.match(Routing.Type type, String pathInfo)Find the matching handler entry given the type and request URI.
-
Method Details
-
match
Find the matching handler entry given the type and request URI. -
before
Execute all appropriate before filters for the given request URI. -
after
Execute all appropriate after filters for the given request URI.
-