MethodArgumentResolver and MethodReturnValueHandler abstractions, and various
implementations thereof.See: Description
| Interface | Description |
|---|---|
| MethodArgumentResolver |
Strategy interface used to resolve method parameters into arguments.
|
| MethodReturnValueHandler |
Strategy interface used to handle method return values.
|
| Class | Description |
|---|---|
| AbstractPayloadMethodProcessor |
Abstract base class for
MethodArgumentResolver and MethodReturnValueHandler implementations based on
RequestPayload and ResponsePayload annotations. |
| AbstractPayloadSourceMethodProcessor |
Abstract base class for
MethodArgumentResolver and MethodReturnValueHandler implementations based on
Sources. |
| MarshallingPayloadMethodProcessor |
Implementation of
MethodArgumentResolver and MethodReturnValueHandler that uses Marshaller
and Unmarshaller to support marshalled objects. |
| MessageContextMethodArgumentResolver |
Implementation of
MethodArgumentResolver that supports MessageContext arguments. |
| SourcePayloadMethodProcessor | |
| StaxPayloadMethodArgumentResolver |
Implementation of
MethodArgumentResolver that supports StAX XMLStreamReader and XMLEventReader arguments. |
| XPathParamMethodArgumentResolver |
Implementation of
MethodArgumentResolver that supports the @XPathParam annotation. |
MethodArgumentResolver and MethodReturnValueHandler abstractions, and various
implementations thereof.