Package io.avaje.jex.spi
Interface SpiRoutes
-
public interface SpiRoutesRoute matching and filter handling.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceSpiRoutes.EntryA route entry.
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
match
SpiRoutes.Entry match(Routing.Type type, String pathInfo)
Find the matching handler entry given the type and request URI.
-
before
void before(String pathInfo, SpiContext ctx)
Execute all appropriate before filters for the given request URI.
-
after
void after(String pathInfo, SpiContext ctx)
Execute all appropriate after filters for the given request URI.
-
-