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 nl.isaac.dotcms.plugin.configuration.osgi.OSGiFileConfiguration.java

/**
 * This changes the default {@link XMLConfiguration#load()} to use DotCMS APIs to load a file managed by DotCMS.
 * @author maarten
 *
 */
public class OSGiFileConfiguration extends PropertiesConfiguration {

From source file com.github.nethad.clustermeister.api.impl.FileConfiguration.java

/**
 *
 * @author thomas
 */
public class FileConfiguration extends PropertiesConfiguration {
    public static final String CLUSTERMEISTER_HOME = System.getProperty("user.home") + "/.clustermeister/";

From source file com.netflix.explorers.context.ExplorerPropertiesConfiguration.java

@Singleton
public class ExplorerPropertiesConfiguration extends PropertiesConfiguration {

    public static final String EXPLORERS_CONFIG_FILE_SUFFIX = "-explorers-config.properties";

    @Inject

From source file net.bafeimao.umbrella.support.server.ApplicationConfig.java

/**
 * Created by bafeimao on 2015/11/2.
 *
 * @author bafeimao
 * @since 1.0
 */

From source file com.shmsoft.dmass.main.SHMcloudConfiguration.java

/**
 *
 * @author mark
 */
public class SHMcloudConfiguration extends PropertiesConfiguration {

From source file com.liferay.ide.properties.core.PortalPropertiesConfiguration.java

/**
 * @author Greg Amerson
 */
public class PortalPropertiesConfiguration extends PropertiesConfiguration {

    public PortalPropertiesConfiguration() throws ConfigurationException {

From source file com.liferay.ide.portlet.core.PluginPropertiesConfiguration.java

/**
 * @author Greg Amerson
 */
public class PluginPropertiesConfiguration extends PropertiesConfiguration {

    public PluginPropertiesConfiguration() throws ConfigurationException {

From source file com.liferay.ide.core.properties.PortalPropertiesConfiguration.java

/**
 * @author Greg Amerson
 */
public class PortalPropertiesConfiguration extends PropertiesConfiguration {

    public PortalPropertiesConfiguration() throws ConfigurationException {

From source file com.liferay.ide.server.tomcat.core.util.ExternalPropertiesConfiguration.java

/**
 * @author Greg Amerson
 */
public class ExternalPropertiesConfiguration extends PropertiesConfiguration {

    public ExternalPropertiesConfiguration() {

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

/**
 * A configuration that comes from a properties configuration file.  This
 * implementation will load the properties config file from wherever it can
 * reasonably find it.
 *
 * @author eric.wittmann@redhat.com