link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -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;
}