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 TypeMethodDescriptionvoidaddArgumentResolvers(List<MethodArgumentResolver> argumentResolvers) Deprecated, for removal: This API element is subject to removal in a future version.Add resolvers to support custom endpoint method argument types.voidaddInterceptors(List<EndpointInterceptor> interceptors) Deprecated, for removal: This API element is subject to removal in a future version.AddEndpointInterceptors for pre- and post-processing of endpoint method invocations.voidaddReturnValueHandlers(List<MethodReturnValueHandler> returnValueHandlers) Deprecated, for removal: This API element is subject to removal in a future version.Add handlers to support custom controller method return value types.
-
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.AddEndpointInterceptors for pre- and post-processing of endpoint method invocations.This implementation is empty.
- Specified by:
addInterceptorsin interfaceWsConfigurer
-
addArgumentResolvers
Deprecated, for removal: This API element is subject to removal in a future version.Add resolvers to support custom endpoint method argument types.This implementation is empty.
- Specified by:
addArgumentResolversin interfaceWsConfigurer- Parameters:
argumentResolvers- initially an empty list
-
addReturnValueHandlers
Deprecated, for removal: This API element is subject to removal in a future version.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:
addReturnValueHandlersin interfaceWsConfigurer- Parameters:
returnValueHandlers- initially an empty list
-
WsConfigurerdirectly