/plugin-module-codegen-maven-client/src/main/java/com/atlassian/maven/plugins/amps/codegen/annotations/ModuleCreatorClass.java

https://bitbucket.org/mmeinhold/amps · Java · 15 lines · 10 code · 2 blank · 3 comment · 0 complexity · d7f77a22ef67cd0e240e079776bebdb7 MD5 · raw file

  1. package com.atlassian.maven.plugins.amps.codegen.annotations;
  2. import java.lang.annotation.*;
  3. /**
  4. * @since 3.6
  5. */
  6. @Documented
  7. @Target(ElementType.TYPE)
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @Inherited
  10. public @interface ModuleCreatorClass
  11. {
  12. public Class value();
  13. }