Class WsConfigurerAdapter
java.lang.Object
org.springframework.ws.config.annotation.WsConfigurerAdapter
- All Implemented Interfaces:
WsConfigurer
@Deprecated(since="4.1.0",
forRemoval=true)
public class WsConfigurerAdapter
extends Object
implements WsConfigurer
Deprecated, for removal: This API element is subject to removal in a future version.
An default implementation of
WsConfigurer
with empty methods allowing
sub-classes to override only the methods they're interested in.- Since:
- 2.2
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addArgumentResolvers
(List<MethodArgumentResolver> argumentResolvers) Deprecated, for removal: This API element is subject to removal in a future version.Configure theMethodArgumentResolver
s to use in addition to the ones registered by default.void
addInterceptors
(List<EndpointInterceptor> interceptors) Deprecated, for removal: This API element is subject to removal in a future version.AddEndpointInterceptor
s for pre- and post-processing of endpoint method invocations.void
addReturnValueHandlers
(List<MethodReturnValueHandler> returnValueHandlers) Deprecated, for removal: This API element is subject to removal in a future version.Configure theMethodReturnValueHandler
s to use in addition to the ones registered by default.
-
Constructor Details
-
WsConfigurerAdapter
public WsConfigurerAdapter()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
addInterceptors
Deprecated, for removal: This API element is subject to removal in a future version.AddEndpointInterceptor
s for pre- and post-processing of endpoint method invocations.This implementation is empty.
- Specified by:
addInterceptors
in interfaceWsConfigurer
-
addArgumentResolvers
Deprecated, for removal: This API element is subject to removal in a future version.Configure theMethodArgumentResolver
s to use in addition to the ones registered by default.This implementation is empty.
- Specified by:
addArgumentResolvers
in interfaceWsConfigurer
- Parameters:
argumentResolvers
- the list of resolvers; initially the default resolvers
-
addReturnValueHandlers
Deprecated, for removal: This API element is subject to removal in a future version.Configure theMethodReturnValueHandler
s to use in addition to the ones registered by default.This implementation is empty.
- Specified by:
addReturnValueHandlers
in interfaceWsConfigurer
- Parameters:
returnValueHandlers
- the list of handlers; initially the default handlers
-
WsConfigurer
directly