feat: expose plugin and viewNode outsize registry

This commit is contained in:
pengfei.zhou
2022-06-02 19:58:21 +08:00
committed by osborn
parent 19a8aaae94
commit 34b759bb82
3 changed files with 19 additions and 0 deletions

View File

@@ -248,4 +248,12 @@ public class DoricRegistry {
public DoricResourceManager getResourceManager() {
return doricResourceManager;
}
public Set<String> allPlugins() {
return pluginInfoMap.keySet();
}
public Set<String> allViewNodes() {
return nodeInfoMap.keySet();
}
}