Uses of Class
io.mangoo.routing.routes.RequestRoute
Packages that use RequestRoute
-
Uses of RequestRoute in io.mangoo.routing
Methods in io.mangoo.routing that return RequestRouteModifier and TypeMethodDescriptionstatic RequestRouteCreates a new RequestRoute for a given list of HTTP request methodsstatic RequestRouteOn.delete()Creates a new RequestRoute for an HTTP DELETE requeststatic RequestRouteOn.get()Creates a new RequestRoute for an HTTP GET requeststatic RequestRouteRouter.getReverseRoute(String key) Retrieves a reverse route by its controller class and controller methodstatic RequestRouteOn.head()Creates a new RequestRoute for an HTTP HEAD requeststatic RequestRouteOn.options()Creates a new RequestRoute for an HTTP OPTIONS requeststatic RequestRouteOn.patch()Creates a new RequestRoute for an HTTP PATCH requeststatic RequestRouteOn.post()Creates a new RequestRoute for an HTTP POST requeststatic RequestRouteOn.put()Creates a new RequestRoute for an HTTP PUT requestMethods in io.mangoo.routing that return types with arguments of type RequestRoute -
Uses of RequestRoute in io.mangoo.routing.routes
Methods in io.mangoo.routing.routes that return RequestRouteModifier and TypeMethodDescriptionRequestRoute.respondeWith(String method) Sets the controller method to response on requestSets the URL for this routeRequestRoute.withAuthentication()Sets authentication to true for this route, default is falseRequestRoute.withBasicAuthentication(String username, String password) Sets HTTP Basic authentication to this request on the defined controller classRequestRoute.withMaxPostSize(long size) Sets the max size of a body entityRequestRoute.withNonBlocking()Configures this request as long-running request that is executed in a different thread pool to not block the non-blocking I/O request