killedMap.put(StatusType.kill, new KillTransitionCallback(data, topologyid,status));
killedMap.put(StatusType.remove, new RemoveTransitionCallback(data, topologyid));
rtn.put(StatusType.killed, killedMap);
Map<StatusType, Callback> rebalancingMap = new HashMap<StatusType, Callback>();
rebalancingMap.put(StatusType.startup, new DelayRebalanceTransitionCallback(data, topologyid, status));
rebalancingMap.put(StatusType.kill, new KillTransitionCallback(data, topologyid,status));
rebalancingMap.put(StatusType.do_rebalance, new DoRebalanceTransitionCallback(data, topologyid, status));
rtn.put(StatusType.rebalancing, rebalancingMap);
return rtn;