2026-03-17 13:31:18 -07:00

18 lines
554 B
Java

/*
* Decompiled with CFR 0.152.
*/
package javax.baja.license;
import javax.baja.license.Feature;
import javax.baja.license.FeatureNotLicensedException;
import javax.baja.license.LicenseDatabaseException;
public interface LicenseManager {
public Feature getFeature(String var1, String var2) throws FeatureNotLicensedException, LicenseDatabaseException;
public Feature checkFeature(String var1, String var2) throws FeatureNotLicensedException, LicenseDatabaseException;
public Feature[] getFeatures() throws LicenseDatabaseException;
}