package com.cvte.vman;

import com.cvte.vman.entity.EntityLicense;
import com.cvte.vman.types.EnumLicenseType;
import java.util.List;

/* JADX INFO: loaded from: classes.dex */
public abstract class LicenseCtrl {
    public abstract String getLicenseKey(EnumLicenseType enumLicenseType);

    public abstract List<EntityLicense> getSupportLicenseList();

    public abstract boolean isLicenseBurned(EnumLicenseType enumLicenseType);

    public abstract boolean isLicenseValid(EnumLicenseType enumLicenseType);
}
