Package io.micronaut.http.server.binding
Class RequestArgumentSatisfier
java.lang.Object
io.micronaut.http.server.binding.RequestArgumentSatisfier
A class containing methods to aid in satisfying arguments of a
Route
.- Since:
- 1.0
- Author:
- Graeme Rocher
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
fulfillArgumentRequirementsAfterFilters
(RouteMatch<?> route, HttpRequest<?> request) Attempt to satisfy the arguments of the given route with the data from the given request.void
fulfillArgumentRequirementsBeforeFilters
(RouteMatch<?> route, HttpRequest<?> request) Attempt to satisfy the arguments of the given route with the data from the given request.
-
Constructor Details
-
RequestArgumentSatisfier
- Parameters:
requestBinderRegistry
- The Request binder registry
-
-
Method Details
-
getBinderRegistry
- Returns:
- The request binder registry
-
fulfillArgumentRequirementsBeforeFilters
Attempt to satisfy the arguments of the given route with the data from the given request.- Parameters:
route
- The routerequest
- The request
-
fulfillArgumentRequirementsAfterFilters
Attempt to satisfy the arguments of the given route with the data from the given request.- Parameters:
route
- The routerequest
- The request
-