forked from fanruan/finekit
Browse Source
* commit 'fa0421f466194742477bb2548a404419c4bafe37': KERNEL-4017 H5插件去掉FMobileLicUtils的依赖master
superman
4 years ago
1 changed files with 21 additions and 0 deletions
@ -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…
Reference in new issue