Exemple #1
0
 protected void applyCatalogCorrelations(ProjectType type) throws Exception {
   // We need the correlations file in order to make sure the parameters
   // get mapped properly
   File correlations_path = this.getParameterMappingsFile(type);
   if (correlations_path != null) {
     ParameterMappingsSet correlations = new ParameterMappingsSet();
     correlations.load(correlations_path.getAbsolutePath(), catalog_db);
     ParametersUtil.applyParameterMappings(catalog_db, correlations);
   }
 }