package com.vci.ubcs.starter.web.util;
|
|
//
|
// Source code recreated from a .class file by IntelliJ IDEA
|
// (powered by FernFlower decompiler)
|
//
|
|
//package com.vci.starter.web.util;
|
|
|
import com.vci.ubcs.starter.web.pagemodel.SessionInfo;
|
|
public class WebThreadLocalUtil {
|
private static ThreadLocal<SessionInfo> currentUserSessionInfoInThread = new ThreadLocal();
|
private static ThreadLocal<String> needQueryTotalInThread = new ThreadLocal();
|
|
public WebThreadLocalUtil() {
|
}
|
|
public static ThreadLocal<SessionInfo> getCurrentUserSessionInfoInThread() {
|
return currentUserSessionInfoInThread;
|
}
|
|
public static void setCurrentUserSessionInfoInThread(ThreadLocal<SessionInfo> currentUserSessionInfoInThread) {
|
WebThreadLocalUtil.currentUserSessionInfoInThread = currentUserSessionInfoInThread;
|
}
|
|
public static ThreadLocal<String> getNeedQueryTotalInThread() {
|
return needQueryTotalInThread;
|
}
|
|
public static void setNeedQueryTotalInThread(ThreadLocal<String> needQueryTotalInThread) {
|
WebThreadLocalUtil.needQueryTotalInThread = needQueryTotalInThread;
|
}
|
}
|