* Configure and create the entity-related store. It is thread-safe and handles entity handling.
*/
StoreConfig storeConfig = new StoreConfig();
storeConfig.setAllowCreate(true);
this.entityStore = new EntityStore(environment, "testDatabase", storeConfig);
SequenceConfig sequenceConfig = new SequenceConfig();
sequenceConfig.setAllowCreate(true);
sequenceConfig.setInitialValue(1);
/*
* Define a named sequence: entities that define this sequence by named using the
* PrimaryKey annotation will receive auto-named values for their unique identity (ID).
*/