public long getLongParameter(String parameter) {
   ConfigurationDefaults def = ConfigurationDefaults.getInstance();
   long result;
   try {
     result = getLongParameter(parameter, def.getLongParameter(parameter));
   } catch (ConfigurationParameterNotFoundException e) {
     result = getLongParameter(parameter, ConfigurationDefaults.def_long);
   }
   return result;
 }