com.mntviews.base.module.BridgeModuleContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mnt-base Show documentation
Show all versions of mnt-base Show documentation
Basis for mnt-bridge services
The newest version!
package com.mntviews.base.module;
import com.mntviews.base.model.DbProperties;
import java.util.HashMap;
import java.util.Map;
public class BridgeModuleContext {
private static Map dbs = new HashMap<>();
public static void setDbs(Map dbs) {
BridgeModuleContext.dbs = dbs;
}
public static Map getDbs() {
return dbs;
}
}