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

net.anotheria.anodoc.util.context.ContextManager Maven / Gradle / Ivy

package net.anotheria.anodoc.util.context;
/**
 * Context manager manages call contextes. It uses a CallContextFactory to create new contextes.
 * Call setFactory prior to anything else.
 * @author another
 *
 */
public class ContextManager {
	/**
	 * The factory for context creation.
	 */
	private static CallContextFactory factory;
	
	private static ThreadLocal callContext = new ThreadLocal(){
		@Override
		protected synchronized CallContext initialValue(){
			return factory.createContext();
		}
	};
	
	/**
	 * Returns the call context for this thread.
	 * @return
	 */
	public static CallContext getCallContext(){
		return callContext.get();
	}
	
	public static void setCallContext(CallContext value){
		callContext.set(value);
	}
	
	/**
	 * Returns the set factory.
	 * @return
	 */
	public static CallContextFactory getFactory() {
		return factory;
	}
	/**
	 * Sets the factory.
	 * @param factory
	 */
	public static void setFactory(CallContextFactory factory) {
		ContextManager.factory = factory;
	}
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy