public Configuration(String propFile) throws IOException {
this(new File(propFile));
}
public Configuration(File propFile) throws IOException {
_properties = new PropertiesFile(propFile, "WOJ server properties");
setSavePeriod(getLong(CONFIGURATION_SAVE_PERIOD, 1000 * 60 * 10));
}