Package fr.jayasoft.commons.util

Examples of fr.jayasoft.commons.util.PropertiesFile


    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));
    }
View Full Code Here

TOP

Related Classes of fr.jayasoft.commons.util.PropertiesFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.