Interface ConfigurationEntryStoreFactory


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