Class WsConfigurerComposite

java.lang.Object
org.springframework.ws.config.annotation.WsConfigurerComposite
All Implemented Interfaces:
WsConfigurer

public class WsConfigurerComposite extends Object implements WsConfigurer
An WsConfigurer implementation that delegates to other WsConfigurer instances.
Since:
2.2
Author:
Arjen Poutsma
  • Constructor Details

    • WsConfigurerComposite

      public WsConfigurerComposite()
  • Method Details

    • addWsConfigurers

      public void addWsConfigurers(List<WsConfigurer> configurers)
    • addInterceptors

      public void addInterceptors(List<EndpointInterceptor> interceptors)
      Description copied from interface: WsConfigurer
      Add EndpointInterceptors for pre- and post-processing of endpoint method invocations.
      Specified by:
      addInterceptors in interface WsConfigurer
    • addArgumentResolvers

      public void addArgumentResolvers(List<MethodArgumentResolver> argumentResolvers)
      Description copied from interface: WsConfigurer
      Add resolvers to support custom endpoint method argument types.
      Specified by:
      addArgumentResolvers in interface WsConfigurer
      Parameters:
      argumentResolvers - initially an empty list
    • addReturnValueHandlers

      public void addReturnValueHandlers(List<MethodReturnValueHandler> returnValueHandlers)
      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 interface WsConfigurer
      Parameters:
      returnValueHandlers - initially an empty list