this.transactionService = transactionService;
this.extDataService = extDataService;
this.jdbcService = jdbcService;
this.fullTextService = fullTextService;
this.configurationService = configurationService;
this.options = new FormatOptions();
this.insertProcessor = new InsertProcessor (store, schemaManager, registryService, options);
this.deleteProcessor = new DeleteProcessor (store, schemaManager, registryService);
this.updateProcessor = new UpdateProcessor (store, schemaManager, registryService, deleteProcessor, insertProcessor);
this.upsertProcessor = new UpsertProcessor (store, schemaManager, registryService, insertProcessor, extDataService, options);
}