public class EndpointStore extends AbstractStore<Endpoint> {
public EndpointStore(String configPath, UserRegistry registry, String configName) {
super(configPath);
if (registry != null) {
this.registryStore = new EndpointRegistryStore(registry, configName);
}
}