Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

API changes

  • As part of cleaning up the API's and use of generics in the API's, the InterceptorProvider API changed it's methods from:
    Code Block
    List<Interceptor> getOutInterceptors();
    
    to
    Code Block
    List<Interceptor<? extends Message>> getOutInterceptors();
    
    While binary compatible (type erasure makes the raw signatures the same), it's not SOURCE compatible as you may need to update the types of variables used to hold the lists. Generally, just do the same change. Add <? extends Message> to the declaration of the Interceptor.

...