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