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