View Javadoc

1   package com.atlassian.marketplace.client.model;
2   
3   import java.lang.annotation.Retention;
4   import java.lang.annotation.RetentionPolicy;
5   
6   /**
7    * This annotation is used internally to denote required link relations in model classes.
8    * @since 2.0.0
9    */
10  @Retention(RetentionPolicy.RUNTIME)
11  public @interface RequiredLink
12  {
13      String rel();
14  }