Annotation Type Configuration


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

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String value
      Name of the generated class.
    • Element Detail

      • value

        java.lang.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:
        ""