View Javadoc
1   package com.atlassian.plugin.spring.scanner.annotation;
2   
3   import com.atlassian.plugin.spring.scanner.ProductFilter;
4   
5   import java.lang.annotation.ElementType;
6   import java.lang.annotation.Retention;
7   import java.lang.annotation.RetentionPolicy;
8   import java.lang.annotation.Target;
9   
10  /**
11   * Used to annotate product specific annotations to designate which product they belong to
12   */
13  @Target(ElementType.ANNOTATION_TYPE)
14  @Retention(RetentionPolicy.RUNTIME)
15  public @interface OnlyInProduct {
16      ProductFilter value();
17  }