Action Method Argument Resolver
interface ActionMethodArgumentResolver
Strategy interface for resolving action method parameters into argument values and input bindings.
See also
Default Action Method Manager
Inheritors
Functions
Link copied to clipboard
abstract fun resolveArgument(javaParameter: Parameter, kotlinParameter: <Error class: unknown class>?, operationContext: OperationContext): Any?
Resolve an action method parameter into an argument value. An OperationContext provides access to the context of the current action.
Link copied to clipboard
open fun resolveInputBinding(javaParameter: Parameter, kotlinParameter: <Error class: unknown class>?): Set<IoBinding>
Link copied to clipboard
abstract fun supportsParameter(javaParameter: Parameter, kotlinParameter: <Error class: unknown class>?, operationContext: OperationContext?): Boolean
Whether the given method parameter is supported by this resolver.