Annotation Interface ConfigValue


@Target(FIELD) @Retention(RUNTIME) @Documented public @interface ConfigValue
This annotation marks configuration schema field as a configuration tree node.

 @Config
  public class FooConfigurationSchema {
      @ConfigValue
       public SomeOtherConfiguration someOther;
 }