com.taobao.api.internal.toplink.remoting.MethodCallContextBean Maven / Gradle / Ivy
The newest version!
package com.taobao.api.internal.toplink.remoting;
public class MethodCallContextBean {
private static ThreadLocal currentContext = new ThreadLocal();
public Object get(Object key) {
return currentContext.get().get(key);
}
protected static void setCurrentContext(MethodCallContext context) {
currentContext.set(context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy