link start!
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.license;
|
||||
|
||||
import javax.baja.license.Feature;
|
||||
import javax.baja.sys.BInterface;
|
||||
import javax.baja.sys.Sys;
|
||||
import javax.baja.sys.Type;
|
||||
|
||||
public interface BILicensed
|
||||
extends BInterface {
|
||||
public static final Type TYPE;
|
||||
|
||||
public Feature getLicenseFeature();
|
||||
|
||||
static {
|
||||
Class clazz = 1.class$javax$baja$license$BILicensed;
|
||||
if (clazz == null) {
|
||||
clazz = 1.class$javax$baja$license$BILicensed = 1.class("[Ljavax.baja.license.BILicensed;", false);
|
||||
}
|
||||
TYPE = Sys.loadType(clazz);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.license;
|
||||
|
||||
import javax.baja.license.FeatureNotLicensedException;
|
||||
|
||||
public interface Feature {
|
||||
public String getVendorName();
|
||||
|
||||
public String getFeatureName();
|
||||
|
||||
public boolean isExpired();
|
||||
|
||||
public void check() throws FeatureNotLicensedException;
|
||||
|
||||
public long getExpiration();
|
||||
|
||||
public String[] list();
|
||||
|
||||
public String get(String var1);
|
||||
|
||||
public String get(String var1, String var2);
|
||||
|
||||
public boolean getb(String var1, boolean var2);
|
||||
|
||||
public int geti(String var1, int var2);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.license;
|
||||
|
||||
import javax.baja.license.FeatureNotLicensedException;
|
||||
|
||||
public class FeatureLicenseExpiredException
|
||||
extends FeatureNotLicensedException {
|
||||
public FeatureLicenseExpiredException(String string) {
|
||||
super(string);
|
||||
}
|
||||
|
||||
public FeatureLicenseExpiredException() {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.license;
|
||||
|
||||
import javax.baja.license.LicenseException;
|
||||
|
||||
public class FeatureNotLicensedException
|
||||
extends LicenseException {
|
||||
public FeatureNotLicensedException(String string) {
|
||||
super(string);
|
||||
}
|
||||
|
||||
public FeatureNotLicensedException() {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.license;
|
||||
|
||||
import javax.baja.license.LicenseException;
|
||||
|
||||
public class LicenseDatabaseException
|
||||
extends LicenseException {
|
||||
public LicenseDatabaseException(String string) {
|
||||
super(string);
|
||||
}
|
||||
|
||||
public LicenseDatabaseException() {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.license;
|
||||
|
||||
import javax.baja.sys.BajaRuntimeException;
|
||||
|
||||
public class LicenseException
|
||||
extends BajaRuntimeException {
|
||||
public LicenseException(String string) {
|
||||
super(string);
|
||||
}
|
||||
|
||||
public LicenseException() {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user