Interface ConfigurationEntryStoreFactory


public interface ConfigurationEntryStoreFactory
Note: the default implementation uses the same location as the ConfigurationStoreFactory, so be sure that the store names are unique for all ConfigurationEntryStores and ConfigurationEntryStores.

The ConfigurationEntryStoreFactory can be used to create new or get existing ConfigurationEntryStores.

You can either create a global ConfigurationEntryStore or a ConfigurationEntryStore for a specific repository. Call this to create a global ConfigurationEntryStore:
configurationEntryStoreFactory.withType(PersistedType.class).withName("name").build();

Call this to create a ConfigurationEntryStore for a specific repository:
configurationEntryStoreFactory .withType(PersistedType.class) .withName("name") .forRepository(repository) .build();
Since:
1.31