Class FHIRConfigHelper


  • public class FHIRConfigHelper
    extends Object
    This class contains a set of static helper methods related to configuration parameters. The functions in this class will try to first retrieve a config property from the current tenant's configuration, then (if not found) look in the "default" configuration.
    • Constructor Detail

      • FHIRConfigHelper

        public FHIRConfigHelper()
    • Method Detail

      • getStringProperty

        public static String getStringProperty​(String propertyName,
                                               String defaultValue)
      • getBooleanProperty

        public static Boolean getBooleanProperty​(String propertyName,
                                                 Boolean defaultValue)
      • getIntProperty

        public static Integer getIntProperty​(String propertyName,
                                             Integer defaultValue)
      • getDoubleProperty

        public static Double getDoubleProperty​(String propertyName,
                                               Double defaultValue)
      • getStringListProperty

        public static List<String> getStringListProperty​(String propertyName)