Interface RestTemplateConfigurer

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface RestTemplateConfigurer
Configurer for a RestTemplate.
Since:
2.3.0
Author:
John Blum
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    configure(RestTemplate restTemplate)
    User-defined method and contract for applying custom configuration to the given RestTemplate.
  • Method Details

    • configure

      void configure(RestTemplate restTemplate)
      User-defined method and contract for applying custom configuration to the given RestTemplate.
      Parameters:
      restTemplate - RestTemplate to customize the configuration for.
      See Also: