Class MessageMethodEndpointAdapter

All Implemented Interfaces:
EndpointAdapter

@Deprecated public class MessageMethodEndpointAdapter extends AbstractMethodEndpointAdapter
Deprecated.
as of Spring Web Services 2.0, in favor of DefaultMethodEndpointAdapter and MessageContextMethodArgumentResolver.
Adapter that supports endpoint methods with message contexts. Supports methods with the following signature:
 void handleMyMessage(MessageContext request);
 
I.e. methods that take a single MessageContext parameter, and return void. The method can have any name, as long as it is mapped by an EndpointMapping.

This adapter is registered by default by the MessageDispatcher and SoapMessageDispatcher.

Since:
1.0.0
Author:
Arjen Poutsma