View Javadoc
1   package net.sf.appstatus.core.loggers;
2   
3   import java.util.List;
4   import java.util.Properties;
5   
6   /**
7    * 
8    * @author Romain Gonord
9    * 
10   */
11  public interface ILoggersManager {
12  	public static final String LEVEL_DEBUG = "DEBUG";
13  
14  	/**
15  	 * Get current configuration.
16  	 * 
17  	 * @return
18  	 */
19  	Properties getConfiguration();
20  
21  	List<LoggerConfig> getLoggers();
22  
23  	void setConfiguration(Properties configuration);
24  
25  	void update(LoggerConfig logger2Change);
26  }