View Javadoc

1   package com.atlassian.plugins.rest.common.expand;
2   
3   import java.lang.annotation.Documented;
4   
5   import static java.lang.annotation.ElementType.*;
6   
7   import java.lang.annotation.Retention;
8   
9   import static java.lang.annotation.RetentionPolicy.*;
10  
11  import java.lang.annotation.Target;
12  
13  @Retention(RUNTIME)
14  @Target(METHOD)
15  @Documented
16  public @interface ExpandConstraint {
17  }