Interface Configurer

All Known Implementing Classes:
ConfigurerImpl

@API(status=STABLE, since="1.0") public interface Configurer
Generic interface for configurable components configurer.
Since:
1.0
Version:
1.0, 2019-07, 1.1, 2025-07
Author:
(w) Iker Hernaez
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Configures the bean passed as argument.
    static Configurer
    Creates a new Configurer instance using the specified ConfigProvider.
  • Method Details

    • fromProvider

      static Configurer fromProvider(ConfigProvider provider)
      Creates a new Configurer instance using the specified ConfigProvider.
      Parameters:
      provider - The ConfigProvider to use.
      Returns:
      A new Configurer instance.
    • configure

      void configure(Configurable bean)
      Configures the bean passed as argument.
      Parameters:
      bean - The bean to configure.