* The Sone to set as currently logged in
*/
public void setCurrentSone(ToadletContext toadletContext, Sone sone) {
Session session = getCurrentSession(toadletContext);
if (sone == null) {
session.removeAttribute("Sone.CurrentSone");
} else {
session.setAttribute("Sone.CurrentSone", sone.getId());
}
}