Browse Source

KERNEL-4017 H5插件去掉FMobileLicUtils的依赖

remotes/1611766341912730171/master
方磊 4 years ago
parent
commit
fa0421f466
  1. 21
      src/main/java/com/fanruan/api/util/LicKit.java

21
src/main/java/com/fanruan/api/util/LicKit.java

@ -0,0 +1,21 @@
package com.fanruan.api.util;
import com.fr.json.JSONObject;
import com.fr.license.exception.RegistEditionException;
import com.fr.regist.FRCoreContext;
import com.fr.regist.FunctionPoint;
public class LicKit {
public LicKit() {
}
public static JSONObject getJsonFromLic() {
return FRCoreContext.getLicense().getJSONObject();
}
public static void checkFunctionPointSupport(FunctionPoint point) {
if (!point.isSupport()) {
throw new RegistEditionException(point);
}
}
}
Loading…
Cancel
Save