Package org.switchyard.common.io.pull

Examples of org.switchyard.common.io.pull.PropertiesPuller.pullPath()


        _loadProperties = null;
        String propsPath = getLoad();
        if (propsPath != null) {
            PropertiesType propsType = propsPath.endsWith(".xml") ? PropertiesType.XML : PropertiesType.PROPERTIES;
            PropertiesPuller propsPuller = new PropertiesPuller(propsType);
            Properties props = propsPuller.pullPath(propsPath, getClass(), PathType.values());
            if (props != null) {
                _loadProperties = props;
            }
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.