Interface BindingsPropertiesProcessor

All Known Implementing Classes:
ArtemisBindingsPropertiesProcessor, CassandraBindingsPropertiesProcessor, Db2BindingsPropertiesProcessor, LDAPBindingsPropertiesProcessor, MongoDbBindingsPropertiesProcessor, MySqlBindingsPropertiesProcessor, OracleBindingsPropertiesProcessor, PostgreSqlBindingsPropertiesProcessor, RedisBindingsPropertiesProcessor, SapHanaBindingsPropertiesProcessor, SpringSecurityOAuth2BindingsPropertiesProcessor, SqlServerBindingsPropertiesProcessor, VaultBindingsPropertiesProcessor, WavefrontBindingsPropertiesProcessor
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 BindingsPropertiesProcessor
An interface for types that transform the contents of a Bindings into properties for injection into a PropertySource.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(org.springframework.core.env.Environment environment, Bindings bindings, Map<String,Object> properties)
    Transform the currently accumulated Bindings-related properties.
  • Method Details

    • process

      void process(org.springframework.core.env.Environment environment, Bindings bindings, Map<String,Object> properties)
      Transform the currently accumulated Bindings-related properties.
      Parameters:
      environment - the Environment that the processor is executing with.
      bindings - the Bindings exposed to the application.
      properties - the currently accumulated properties.