private Map<?, ?> configuration;
@Override
public void initialize(Map<?, ?> properties) {
ConfigurationPropertyReader configurationPropertyReader = new ConfigurationPropertyReader( properties );
this.dbLocation = configurationPropertyReader.property( Neo4jProperties.DATABASE_PATH, String.class )
.required()
.getValue();
this.configurationLocation = configurationPropertyReader
.property( Neo4jProperties.CONFIGURATION_RESOURCE_NAME, URL.class )
.getValue();
configuration = properties;
}