View Javadoc

1   package org.naftulin.configmgr;
2   
3   public interface ConfigurationManagerConsoleMBean {
4   
5   	String getJmxConsoleDateFormat();
6   
7   	void setJmxConsoleDateFormat(String dateFormat);
8   
9   	int getJmxConsoleAbbreviateFileLength();
10  
11  	void setJmxConsoleAbbreviateFileLength(int len);
12  	
13  	int getJmxConsoleAbbreviateContentLength();
14  	void setJmxConsoleAbbreviateContentLength(int len);
15  
16  	String reload();
17  
18  	int getConfigurationEntriesCount();
19  
20  	String[] getConfigurationEntries();
21  	
22  	String getContent(String key);
23  
24  }