Package com.ibm.commons.runtime.properties

Examples of com.ibm.commons.runtime.properties.FileResourcePropertiesFactory


    /*
     * Merges template with data
     */
    private JsonJavaObject mergeData(String templatePath, String propertiesPath) throws JsonException{
        String template = readFile(templatePath);
        FileResourcePropertiesFactory frpf = new FileResourcePropertiesFactory();
        Properties props = frpf.readFactoriesFromFile(propertiesPath);
        template = ParameterProcessor.process(template, props);
       
        JsonJavaObject templateObj = (JsonJavaObject)JsonParser.fromJson(JsonJavaFactory.instanceEx, template);
        return templateObj;
    }
View Full Code Here

TOP

Related Classes of com.ibm.commons.runtime.properties.FileResourcePropertiesFactory

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.