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

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

Introduction

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

Prototype

ConstantLookup

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