Annotation Interface ConfiguredOption


A single configuration option. Must be used together with Configured. Usually this should target a builder method that configures appropriate option. If defined on a static method, it must be a {code static T create(X)} method, where X is either io.helidon.config.Config or a single option.

There may be multiple create(X) methods defined on a single interface/class, each of them annotated with a different list of options. In such a case the grouping should be used as defined on these methods. If a method create(Config) exists, it should use the same groups (e.g. if one method defines URI and Proxy, and another method defines a Path, the create(Config) method can accept either (URI, proxy host, proxy port) or (path).

By default, the name of the method is considered to be the configuration option used. If method contains camel case, it will be changed to lower case hyphenated (this describes the implementation of Helidon specific annotation processor and expectations).

Example - method public Builder listenAddress(String) would be configured by key listen-address.

  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static enum 
    Option kind.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    For options that have a predefined set of allowed values.
    boolean
    Configure to true if this option is deprecated.
    Description of the configuration option.
    boolean
    Set to true for experimental configuration.
    The key of the configuration option as used in config.
    Kind of this option.
    boolean
    When set to true, this property will be part of the parent structure (e.g.
    boolean
    Set to true if the configuration may be provided by another module not know to us.
    boolean
    Whether this option is truly required (e.g.
    The type of the configuration option.
    Default value of this option if not configured explicitly.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    A string meaning that a value is not specified (to allow empty String as a meaningful value).
  • Field Details

    • UNCONFIGURED

      static final String UNCONFIGURED
      A string meaning that a value is not specified (to allow empty String as a meaningful value).
      See Also:
  • Element Details

    • key

      String key
      The key of the configuration option as used in config.
      Returns:
      config key
      Default:
      ""
    • type

      Class<?> type
      The type of the configuration option. By default it is the type of the first parameter. If this annotation exists on a class, type defaults to String.
      Returns:
      type of the configuration option
      Default:
      io.helidon.config.metadata.ConfiguredOption.class
    • description

      String description
      Description of the configuration option. By default javadoc of the builder method is used. If this annotation exists on a class, description is mandatory.
      Returns:
      description of the configuration option
      Default:
      ""
    • required

      boolean required
      Whether this option is truly required (e.g. the option must be present in configuration, otherwise the component would fail). This MUST NOT be configured together with default value, as that would make this option optional (as a default value exists).
      Returns:
      true for required option, false for options that are optional.
      Default:
      false
    • value

      String value
      Default value of this option if not configured explicitly.
      Returns:
      default value
      Default:
      "io.helidon.config.metadata.ConfiguredOption.UNCONFIGURED"
    • experimental

      boolean experimental
      Set to true for experimental configuration.
      Returns:
      whether this option is experimental
      Default:
      false
    • kind

      Kind of this option. Defaults to ConfiguredOption.Kind.VALUE, autodetects ConfiguredOption.Kind.LIST if the parameter is an actual List, Set or Iterable. ConfiguredOption.Kind.MAP is detected as well, though the type must be a String to a primitive or string
      Returns:
      kind of configuration option
      Default:
      VALUE
    • provider

      boolean provider
      Set to true if the configuration may be provided by another module not know to us. The provider must then be configured to Configured.provides() this type.
      Returns:
      whether this requires a provider with configuration, defaults to false
      Default:
      false
    • allowedValues

      ConfiguredValue[] allowedValues
      For options that have a predefined set of allowed values.
      Returns:
      allowed values
      Default:
      {}
    • deprecated

      boolean deprecated
      Configure to true if this option is deprecated.
      Returns:
      whether this configured option is deprecated
      Default:
      false
    • mergeWithParent

      boolean mergeWithParent
      When set to true, this property will be part of the parent structure (e.g. the key() must be empty, and this must be a complex node).
      Returns:
      whether to merge the child nodes directly with parent node without a key
      Default:
      false