Uses of Interface
io.github.grumpystuff.grumpyrest.ComplexHandler
Packages that use ComplexHandler
-
Uses of ComplexHandler in io.github.grumpystuff.grumpyrest
Methods in io.github.grumpystuff.grumpyrest that return ComplexHandlerModifier and TypeMethodDescriptionRoute.handler()Returns the value of thehandlerrecord component.Methods in io.github.grumpystuff.grumpyrest with parameters of type ComplexHandlerModifier and TypeMethodDescriptionvoidRestApi.addComplexRoute(HttpMethod method, Path path, ComplexHandler handler) Adds a route to handle requests.voidRestApi.addComplexRoute(HttpMethod method, String path, ComplexHandler handler) Adds a route to handle requests.Constructors in io.github.grumpystuff.grumpyrest with parameters of type ComplexHandlerModifierConstructorDescriptionRoute(HttpMethod method, Path path, ComplexHandler handler) Standard constructor.Route(HttpMethod method, String path, ComplexHandler handler) This constructor specifies the path pattern as a string instead of aPathobject.