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

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

Introduction

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

Usage

From source file org.jkcsoft.java.util.ConfigHelper.java

/**
 * Wraps a commons.configuration.Configuration object via delegation.
 * <p>
 * Primary value-add is
 * - delegated defaulting
 * - validation.

From source file io.apiman.manager.ui.server.servlets.SystemPropertiesConfiguration.java

/**
 * A simple system properties configuration.
 *
 * @author eric.wittmann@redhat.com
 */
public class SystemPropertiesConfiguration extends AbstractConfiguration {

From source file io.zipi.common.config.SystemPropertiesConfiguration.java

/**
 * A {@link Configuration} implementation based on the current java system
 * properties.  This implementation differs from {@link SystemConfiguration}
 * because it pulls the system properties live, rather than caching them
 * when the configuration instance is created.  This allows configuration to
 * change by modifying the system properties at runtime.

From source file io.apiman.common.config.SystemPropertiesConfiguration.java

/**
 * A {@link Configuration} implementation based on the current java system
 * properties.  This implementation differs from {@link SystemConfiguration}
 * because it pulls the system properties live, rather than caching them
 * when the configuration instance is created.  This allows configuration to
 * change by modifying the system properties at runtime.

From source file org.artificer.common.SystemPropertiesConfiguration.java

/**
 * A {@link Configuration} implementation based on the current java system
 * properties.  This implementation differs from {@link SystemConfiguration}
 * because it pulls the system properties live, rather than caching them
 * when the configuration instance is created.  This allows configuration to
 * change by modifying the system properties.

From source file org.overlord.sramp.common.SystemPropertiesConfiguration.java

/**
 * A {@link Configuration} implementation based on the current java system
 * properties.  This implementation differs from {@link SystemConfiguration}
 * because it pulls the system properties live, rather than caching them
 * when the configuration instance is created.  This allows configuration to
 * change by modifying the system properties.

From source file org.overlord.commons.config.SystemPropertiesConfiguration.java

/**
 * A {@link Configuration} implementation based on the current java system
 * properties.  This implementation differs from {@link SystemConfiguration}
 * because it pulls the system properties live, rather than caching them
 * when the configuration instance is created.  This allows configuration to
 * change by modifying the system properties at runtime.

From source file org.jboss.datavirt.commons.config.SystemPropertiesConfiguration.java

/**
 * A {@link Configuration} implementation based on the current java system
 * properties.  This implementation differs from {@link SystemConfiguration}
 * because it pulls the system properties live, rather than caching them
 * when the configuration instance is created.  This allows configuration to
 * change by modifying the system properties at runtime.

From source file org.neo4j.server.configuration.MapBasedConfiguration.java

public class MapBasedConfiguration extends AbstractConfiguration {

    private Map<String, Object> config = new HashMap<String, Object>();

    @Override
    public boolean isEmpty() {

From source file org.apache.distributedlog.common.config.ConcurrentBaseConfiguration.java

/**
 * Configuration view built on concurrent hash map for fast thread-safe access.
 * Notes:
 * 1. Multi-property list aggregation will not work in this class. I.e. commons config
 * normally combines all properties with the same key into one list property automatically.
 * This class simply overwrites any existing mapping.