Annotation Interface Configuration


@Documented @Target(TYPE) @Retention(CLASS) public @interface Configuration
  • Element Details

    • value

      String value
      Name of the generated class.

      If not manually set, the value is set to the annotation class name with an "Impl" suffix:

       @Configuration
       interface Foo { }
      
       @Generated
       public class FooImpl { }
       
      Default:
      ""