10 lines
350 B
Java
10 lines
350 B
Java
package javax.baja.license;
|
|
|
|
public interface LicenseManager {
|
|
Feature checkFeature(String str, String str2) throws FeatureNotLicensedException, LicenseDatabaseException;
|
|
|
|
Feature getFeature(String str, String str2) throws FeatureNotLicensedException, LicenseDatabaseException;
|
|
|
|
Feature[] getFeatures() throws LicenseDatabaseException;
|
|
}
|