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

com.github.mayconmfl.log4jconfigurator.config.InitManager Maven / Gradle / Ivy

The newest version!
package com.github.mayconmfl.log4jconfigurator.config;

import com.github.mayconmfl.log4jconfigurator.interfaces.Log4jConfigurator;

/**
 * @author Maycon Lima
 */
public class InitManager
{
	private InitManager()
	{
	}

	private static Log4jConfigurator	instance;

	public static Log4jConfigurator getInstance()
	{
		if (instance == null)
		{
			instance = Log4jConfiguratorImpl.getNewInstance();
		}
		return instance;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy