All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.esfinge.gamification.user.UserStorage Maven / Gradle / Ivy

package net.sf.esfinge.gamification.user;

public class UserStorage {
	
	private static ThreadLocal user = new ThreadLocal();
	
	public static Object getUserID(){
		return user.get();
	}
	
	public static void setUserID(Object u){
		user.set(u);
	}
}