Class WsConfigurerAdapter
java.lang.Object
org.springframework.ws.config.annotation.WsConfigurerAdapter
- All Implemented Interfaces:
WsConfigurer
An default implementation of
WsConfigurer
with empty methods allowing sub-classes to override only the
methods they're interested in.- Since:
- 2.2
- Author:
- Arjen Poutsma
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addArgumentResolvers
(List<MethodArgumentResolver> argumentResolvers) Add resolvers to support custom endpoint method argument types.void
addInterceptors
(List<EndpointInterceptor> interceptors) AddEndpointInterceptor
s for pre- and post-processing of endpoint method invocations.void
addReturnValueHandlers
(List<MethodReturnValueHandler> returnValueHandlers) Add handlers to support custom controller method return value types.
-
Constructor Details
-
WsConfigurerAdapter
public WsConfigurerAdapter()
-
-
Method Details
-
addInterceptors
AddEndpointInterceptor
s for pre- and post-processing of endpoint method invocations.This implementation is empty.
- Specified by:
addInterceptors
in interfaceWsConfigurer
-
addArgumentResolvers
Add resolvers to support custom endpoint method argument types.This implementation is empty.
- Specified by:
addArgumentResolvers
in interfaceWsConfigurer
- Parameters:
argumentResolvers
- initially an empty list
-
addReturnValueHandlers
Add handlers to support custom controller method return value types.Using this option does not override the built-in support for handling return values. To customize the built-in support for handling return values, configure RequestMappingHandlerAdapter directly.
This implementation is empty.
- Specified by:
addReturnValueHandlers
in interfaceWsConfigurer
- Parameters:
returnValueHandlers
- initially an empty list
-