Map<String, String> properties = new HashMap<String, String>();
Map<String, byte[]> binaryProperties = new HashMap<String, byte[]>();
Map<String, DataExporter> moduleExporters = new HashMap<String, DataExporter>();
// load the module from file
SpringExecutorInitializer configuration = new SpringExecutorInitializer();
configuration.loadModuleConfiguration(configurationFile, properties, binaryProperties, moduleExporters);
// check whether the configuration specifies a name
String moduleName = properties.get(Module.PROPERTY_MODULE_NAME);
if (moduleName == null) {