1 package com.atlassian.marketplace.client.model;
2
3 import java.net.URI;
4
5 /**
6 * Common properties defined for resource entities in the Marketplace API.
7 * @since 2.0.0
8 */
9 public interface Entity
10 {
11 /**
12 * The top-level links for the resource.
13 */
14 public Links getLinks();
15
16 /**
17 * The "self" link for the resource. This is the canonical identifier for the entity in the API,
18 * and is used whenever linking to this resource from another one.
19 */
20 public URI getSelfUri();
21 }