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

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

Introduction

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

Prototype

EnvironmentLookup

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());
}