View Javadoc
1   package com.simpligility.maven.plugins.android.config;
2   
3   import java.lang.annotation.ElementType;
4   import java.lang.annotation.Retention;
5   import java.lang.annotation.RetentionPolicy;
6   import java.lang.annotation.Target;
7   
8   /**
9    * ConfigPojo is an annotation identifying a pojo as a configuration holder for ConfigHandler.
10   *
11   * @author Adrian Stabiszewski https://github.com/grundid/
12   * @author Manfred Moser - manfred@simpligility.com
13   * @see ConfigHandler
14   */
15  @Target( { ElementType.FIELD } )
16  @Retention( RetentionPolicy.RUNTIME )
17  public @interface ConfigPojo
18  {
19  
20      String prefix() default "parsed";
21  }