Java Code Examples for org.jeecg.common.system.util.JwtUtil#getUserSystemData()
The following examples show how to use
org.jeecg.common.system.util.JwtUtil#getUserSystemData() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: QueryGenerator.java From jeecg-cloud with Apache License 2.0 | 5 votes |
public static String converRuleValue(String ruleValue) { String value = JwtUtil.getSessionData(ruleValue); if(oConvertUtils.isEmpty(value)) { value = JwtUtil.getUserSystemData(ruleValue,null); } return value!= null ? value : ruleValue; }
Example 2
Source File: QueryGenerator.java From jeecg-boot-with-activiti with MIT License | 5 votes |
public static String converRuleValue(String ruleValue) { String value = JwtUtil.getSessionData(ruleValue); if(oConvertUtils.isEmpty(value)) { value = JwtUtil.getUserSystemData(ruleValue,null); } return value!= null ? value : ruleValue; }
Example 3
Source File: QueryGenerator.java From teaching with Apache License 2.0 | 5 votes |
public static String converRuleValue(String ruleValue) { String value = JwtUtil.getSessionData(ruleValue); if(oConvertUtils.isEmpty(value)) { value = JwtUtil.getUserSystemData(ruleValue,null); } return value!= null ? value : ruleValue; }
Example 4
Source File: QueryGenerator.java From jeecg-boot with Apache License 2.0 | 5 votes |
public static String converRuleValue(String ruleValue) { String value = JwtUtil.getSessionData(ruleValue); if(oConvertUtils.isEmpty(value)) { value = JwtUtil.getUserSystemData(ruleValue,null); } return value!= null ? value : ruleValue; }