Annotation Type ConfKey


@Retention(RUNTIME) @Target(METHOD) public @interface ConfKey
Specifies the key whose value will be used for this method. If this annotation is not specified, the method name is used.

WARNING: Dotted key paths used to allow "." in order to have the data be pulled from a subsection. This behavior is now deprecated and must be explicit enabled by setting ConfigurationOptions.Builder.setDottedPathInConfKey(boolean)

Author:
A248
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    Defines the key at which this entry's data should be pulled from.
  • Element Details

    • value

      String value
      Defines the key at which this entry's data should be pulled from. The key is relative to the position of this config method. It may contain . in order to have the data be pulled from a subsection.

      WARNING: Dotted key paths used to allow "." in order to have the data be pulled from a subsection. This behavior is now deprecated and must be explicit enabled by setting ConfigurationOptions.Builder.setDottedPathInConfKey(boolean)

      Returns:
      the relative key