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.
as of 4.1.0 in favor of implementing WsConfigurer directly
An default implementation of WsConfigurer with empty methods allowing sub-classes to override only the methods they're interested in.
Since:
2.2
  • Constructor Details

    • WsConfigurerAdapter

      public WsConfigurerAdapter()
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • addInterceptors

      public void addInterceptors(List<EndpointInterceptor> interceptors)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Add EndpointInterceptors for pre- and post-processing of endpoint method invocations.

      This implementation is empty.

      Specified by:
      addInterceptors in interface WsConfigurer
    • addArgumentResolvers

      public void addArgumentResolvers(List<MethodArgumentResolver> argumentResolvers)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Configure the MethodArgumentResolvers to use in addition to the ones registered by default.

      This implementation is empty.

      Specified by:
      addArgumentResolvers in interface WsConfigurer
      Parameters:
      argumentResolvers - the list of resolvers; initially the default resolvers
    • addReturnValueHandlers

      public void addReturnValueHandlers(List<MethodReturnValueHandler> returnValueHandlers)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Configure the MethodReturnValueHandlers to use in addition to the ones registered by default.

      This implementation is empty.

      Specified by:
      addReturnValueHandlers in interface WsConfigurer
      Parameters:
      returnValueHandlers - the list of handlers; initially the default handlers