use of io.vertigo.dynamo.impl.store.datastore.DataStorePlugin in project vertigo by KleeGroup.
the class LogicalDataStoreConfig method getDataStorePlugin.
private DataStorePlugin getDataStorePlugin(final String dataSpace) {
Assertion.checkArgNotEmpty(dataSpace);
// -----
final DataStorePlugin dataStore = dataStorePluginsMap.get(dataSpace);
Assertion.checkNotNull(dataStore, "No store found mapped to collection '{0}'", dataSpace);
return dataStore;
}
Aggregations