Interface ConfigurationStoreFactory


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

The ConfigurationStoreFactory can be used to create new or get existing ConfigurationStore objects. You can either create a global ConfigurationStore or a ConfigurationStore for a specific repository.

Call this to create a global ConfigurationStore: configurationStoreFactory.withType(PersistedType.class).withName("name").build();

Call this to create a ConfigurationStore for a specific repository:
configurationStoreFactory.withType(PersistedType.class).withName("name").forRepository(repository).build();