Class WsConfigurerComposite
java.lang.Object
org.springframework.ws.config.annotation.WsConfigurerComposite
- All Implemented Interfaces:
WsConfigurer
@Deprecated(since="4.0.12",
forRemoval=true)
public class WsConfigurerComposite
extends Object
implements WsConfigurer
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0.12 with no replacement
An
WsConfigurer
implementation that delegates to other WsConfigurer
instances.- 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.Add resolvers to support custom endpoint method argument types.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.Add handlers to support custom controller method return value types.void
addWsConfigurers
(List<WsConfigurer> configurers) Deprecated, for removal: This API element is subject to removal in a future version.
-
Constructor Details
-
WsConfigurerComposite
public WsConfigurerComposite()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
addWsConfigurers
Deprecated, for removal: This API element is subject to removal in a future version. -
addInterceptors
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:WsConfigurer
AddEndpointInterceptor
s for pre- and post-processing of endpoint method invocations.- Specified by:
addInterceptors
in interfaceWsConfigurer
-
addArgumentResolvers
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:WsConfigurer
Add resolvers to support custom endpoint method argument types.- Specified by:
addArgumentResolvers
in interfaceWsConfigurer
- Parameters:
argumentResolvers
- initially an empty list
-
addReturnValueHandlers
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:WsConfigurer
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.
- Specified by:
addReturnValueHandlers
in interfaceWsConfigurer
- Parameters:
returnValueHandlers
- initially an empty list
-