Example usage for org.apache.commons.configuration SystemConfiguration getProperty

List of usage examples for org.apache.commons.configuration SystemConfiguration getProperty

Introduction

In this page you can find the example usage for org.apache.commons.configuration SystemConfiguration getProperty.

Prototype

public Object getProperty(String key) 

Source Link

Usage

From source file:org.msjs.config.MsjsConfiguration.java

private void loadSystemConfig() {
    SystemConfiguration sysConfig = new SystemConfiguration();
    Iterator<String> keys = sysConfig.getKeys("msjs");
    while (keys.hasNext()) {
        String key = keys.next();
        setProperty(key, sysConfig.getProperty(key));
    }//  w  w w. ja va2s  . co  m
}