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 model properties that should not be serialized.
8    * @since 2.0.0
9    */
10  @Retention(RetentionPolicy.RUNTIME)
11  public @interface ReadOnly
12  {
13  }