com.github.mayconmfl.log4jconfigurator.config.InitManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of log4j-configurator Show documentation
Show all versions of log4j-configurator Show documentation
Projeto abstrai o arquivo xml de configuração para o log4j
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;
}
}