Example usage for org.apache.commons.configuration2.interpol SystemPropertiesLookup SystemPropertiesLookup

List of usage examples for org.apache.commons.configuration2.interpol SystemPropertiesLookup SystemPropertiesLookup

Introduction

In this page you can find the example usage for org.apache.commons.configuration2.interpol SystemPropertiesLookup SystemPropertiesLookup.

Prototype

SystemPropertiesLookup

Source Link

Usage

From source file:org.apache.shiro.config.CommonsInterpolator.java

public CommonsInterpolator() {
    this.interpolator = new ConfigurationInterpolator();

    interpolator.registerLookup("const", new ConstantLookup());
    interpolator.addDefaultLookup(new SystemPropertiesLookup());
    interpolator.addDefaultLookup(new EnvironmentLookup());
}