// do not kill current session
msg.setType("Error");
msg.setMessage("@NotAllowedToKillCurrentSession@");
bundle.setResult(msg);
} else {
Session session = OBDal.getInstance().get(Session.class, sessionId);
session.setSessionActive(false);
msg.setType("Success");
msg.setMessage("@Success@");
}
bundle.setResult(msg);