//TODO pull these mappings from some config file and reflect them
map.put("coreproject", new ProjectManager(data));
map.put("coreuser", new UserManager(data));
map.put("defecttrackerdefect", new DefectManager(data));
map.put("defecttrackercomment", new CommentManager(data));
map.put("postboardpostboardmessage", new PostBoardEntityManager(data));
//add just your module to this list
String[] fullModuleList = {"core","defecttracker","postboard"};
((ProjectManager)map.get("coreproject")).setAllModules(fullModuleList);
String ssid = null;