View Javadoc

1   package com.atlassian.marketplace.client.api;
2   
3   import java.net.URI;
4   
5   /**
6    * Simple value wrapper for a resource URI when it is used to identify an add-on category.
7    * @since 2.0.0
8    */
9   public final class AddonCategoryId extends ResourceId
10  {
11      private AddonCategoryId(URI uri)
12      {
13          super(uri);
14      }
15      
16      public static AddonCategoryId fromUri(URI uri)
17      {
18          return new AddonCategoryId(uri);
19      }
20  }