Example usage for org.apache.commons.configuration PropertiesConfiguration subclass-usage

List of usage examples for org.apache.commons.configuration PropertiesConfiguration subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.configuration PropertiesConfiguration subclass-usage.

Usage

From source file de.ingrid.portal.config.PortalConfig.java

/**
 * Provides access to the ingrid portal preferences.
 * 
 * @author joachim@wemove.com
 */
public class PortalConfig extends PropertiesConfiguration {

From source file com.uber.stream.kafka.mirrormaker.manager.ManagerConf.java

/**
 * Manager configs:
 * Helix configs, Manager Rest layer and reporting.
 *
 * @author hongxu
 */

From source file it.unimi.dsi.util.Properties.java

/** An extension of {@link org.apache.commons.configuration.PropertiesConfiguration}
 * providing setters for primitive types, a simpler {@linkplain #save(CharSequence) way to save preferences}
 * and transparent handling of {@link java.lang.Enum} lowercased keys.
 * 
 * <p>All accessors defined in {@link org.apache.commons.configuration.PropertiesConfiguration} have a
 * polymorphic counterpart taking an {@link java.lang.Enum} instead of a string: {@link java.lang.Enum#name()}

From source file ar.edu.taco.TacoConfigurator.java

/**<p>Handles TACO analysis configuration information.</p>
 * <h3>Integers</h3>
 * <p>TACO can analyse code using Alloy integers or Java-like Integers.
 * In either case, the meaning of the bitwidth value is the same: a bound 
 * in the count of numbers TACO will deal with. In particular, it states that 
 * the range of integers used in the analysis include from -2^{bitwidth-1} 

From source file org.shaf.core.process.config.ProcessConfiguration.java

/**
 * The process configuration.
 * 
 * @author Mykola Galushka
 */
public class ProcessConfiguration extends PropertiesConfiguration {

From source file com.netflix.config.util.ConfigurationUtils.java

class OverridingPropertiesConfiguration extends PropertiesConfiguration {

    public OverridingPropertiesConfiguration() {
        super();
    }