Package org.stagemonitor.core.configuration

Examples of org.stagemonitor.core.configuration.EnvironmentVariableConfigurationSource


    if (stagemonitorPropertyOverridesLocation != null) {
      logger.info("try loading of default property overrides: '" + stagemonitorPropertyOverridesLocation + "'");
      configurationSources.add(new PropertyFileConfigurationSource(stagemonitorPropertyOverridesLocation));
    }
    configurationSources.add(new PropertyFileConfigurationSource("stagemonitor.properties"));
    configurationSources.add(new EnvironmentVariableConfigurationSource());
    configuration = new Configuration(StagemonitorPlugin.class, configurationSources, STAGEMONITOR_PASSWORD);
  }
View Full Code Here

TOP

Related Classes of org.stagemonitor.core.configuration.EnvironmentVariableConfigurationSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.