1 package com.atlassian.sal.api.license;
2
3 import com.atlassian.annotations.PublicApi;
4
5 /**
6 * A "view" on top of a license that is in the context of a single given product.
7 * <p>
8 * Note that some licenses may actually include multiple Products in a single license (eg ELAs - Enterprise License Agreements).
9 * However, even if the actually underlying license contains multiple products this view only shows information about
10 * a single one of those products.
11 *
12 * @see com.atlassian.sal.api.license.MultiProductLicenseDetails
13 */
14 @SuppressWarnings("UnusedDeclaration")
15 @PublicApi
16 public interface SingleProductLicenseDetailsView extends ProductLicense, BaseLicenseDetails {
17
18 }