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 a vendor.
7 * @since 2.0.0
8 */
9 public final class VendorId extends ResourceId
10 {
11 private VendorId(URI uri)
12 {
13 super(uri);
14 }
15
16 public static VendorId fromUri(URI uri)
17 {
18 return new VendorId(uri);
19 }
20 }