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 net.jforum.util.JForumConfig.java

/**
 * @author Rafael Steil
 * @author Jose Donizetti Brito Junior
 */
@Component
@ApplicationScoped

From source file org.msjs.config.MsjsConfiguration.java

/**
 * Provides configuration values to classes within msjs.
 * For more about Configuration and variable interpolation, see the docs for
 * {@link org.apache.commons.configuration.Configuration}
 */
@Singleton

From source file morphy.properties.MorphyPreferences.java

public class MorphyPreferences extends PropertiesConfiguration {
    private File configFilePath;

    private static final Log LOG = LogFactory.getLog(MorphyPreferences.class);

    public MorphyPreferences(File file) throws Exception {

From source file ru.sincore.ConfigurationManager.java

/**
 * Configuration Manager
 *
 * @author hatred
 *         <p/>
 *         Date: 28.09.11

From source file com.linkedin.pinot.controller.ControllerConf.java

public class ControllerConf extends PropertiesConfiguration {
    private static final String CONTROLLER_VIP_HOST = "controller.vip.host";
    private static final String CONTROLLER_VIP_PORT = "controller.vip.port";
    private static final String CONTROLLER_VIP_PROTOCOL = "controller.vip.protocol";
    private static final String CONTROLLER_HOST = "controller.host";
    private static final String CONTROLLER_PORT = "controller.port";

From source file org.apache.atlas.ApplicationProperties.java

/**
 * Application properties used by Atlas.
 */
public final class ApplicationProperties extends PropertiesConfiguration {
    public static final String ATLAS_CONFIGURATION_DIRECTORY_PROPERTY = "atlas.conf";

From source file com.kantenkugel.kanzebot.core.config.ConfigImpl.java

public class ConfigImpl extends PropertiesConfiguration implements AddonConfig, ConfigurationListener {

    private static Pattern versionPattern = Pattern.compile(".*\\#config.version\\=(\\d*)\\;.*");

    private boolean hasChanged = false;
    private boolean isNew = false;

From source file com.uber.stream.kafka.mirrormaker.controller.ControllerConf.java

/**
 * Controller configs:
 * Helix configs, Controller Rest layer and reporting.
 *
 * @author xiangfu
 */

From source file org.acmsl.queryj.SerializablePropertiesConfiguration.java

/**
 * Makes {@link PropertiesConfiguration} {@link Serializable}.
 * @author <a href="mailto:queryj@acm-sl.org">Jose San Leandro</a>
 * @since 3.0
 * Created: 2014/04/30 12:54
 */

From source file org.cinchapi.concourse.config.ConcourseConfiguration.java

/**
 * A {@link PropertiesConfiguration} loader with additional methods.
 * 
 * @author jnelson
 */
public class ConcourseConfiguration extends PropertiesConfiguration {