Interface ConfigurationStoreFactory


public interface ConfigurationStoreFactory
The ConfigurationStoreFactory can be used to create new or get existing ConfigurationStore objects.
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.
You can either create a global ConfigurationStore or a ConfigurationStore for a specific repository. To create a global ConfigurationStore call:
     configurationStoreFactory
       .withType(PersistedType.class)
       .withName("name")
       .build();
 
To create a ConfigurationStore for a specific repository call:
     configurationStoreFactory
       .withType(PersistedType.class)
       .withName("name")
       .forRepository(repository)
       .build();