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
    configure(@NotNull Configurable bean)
    Configures the bean passed as argument.
    static @NotNull Configurer
    fromProvider(@NotNull ConfigProvider provider)
    Creates a new Configurer instance using the specified ConfigProvider.
  • Method Details

    • fromProvider

      @NotNull static @NotNull Configurer fromProvider(@NotNull @NotNull 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(@NotNull @NotNull Configurable bean)
      Configures the bean passed as argument.
      Parameters:
      bean - The bean to configure.