return null;
}
Synchronizer<?, ?> syn = (Synchronizer<?, ?>) cls.newInstance();
return new ImportConfigurationDefinition(synchronizerClass, syn.getImporter().getImportConfigurationDefinition());
} catch (ClassNotFoundException e) {
LOG.debug("Supplied synchronizer class is invalid: '" + synchronizerClass + "'.", e);
return null;
} catch (Exception e) {
LOG.error("Failed to instantiate the synchronizer '" + synchronizerClass + "'. This should not happen.");