License.java 761 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 */
package com.adobe.granite.license;

import aQute.bnd.annotation.ProviderType;
import java.util.Map;

@ProviderType
public interface License
extends Map<String, String> {
    public static final String LICENSE_DOWNLOAD_ID = "license.downloadID";
    public static final String LICENSE_CUSTOMER_NAME = "license.customer.name";
    public static final String LICENSE_PRODUCT_NAME = "license.product.name";
    public static final String LICENSE_PRODUCT_VERSION = "license.product.version";

    public String getDownloadId();

    public String getCustomerName();

    public String getProductName();

    public String getProductVersion();
}