Class ValueProvider

java.lang.Object
org.springframework.boot.configurationmetadata.ValueProvider
All Implemented Interfaces:
Serializable

public class ValueProvider extends Object implements Serializable
Define a component that is able to provide the values of a property.

Each provider is defined by a name and can have an arbitrary number of parameters. The available providers are defined in the Spring Boot documentation.

Since:
1.3.0
See Also:
  • Constructor Details

    • ValueProvider

      public ValueProvider()
  • Method Details

    • getName

      public String getName()
      Return the name of the provider.
      Returns:
      the name
    • setName

      public void setName(String name)
    • getParameters

      public Map<String,Object> getParameters()
      Return the parameters.
      Returns:
      the parameters
    • toString

      public String toString()
      Overrides:
      toString in class Object