public interface SpiRoutes
Route matching and filter handling.
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceSpiRoutes.EntryA route entry.static classSpiRoutes.ParamsPath and splat/wildcard parameters. -
Method Summary
Modifier and Type Method Description voidafter(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.SpiRoutes.Entrymatch(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.
-