@Override
public void init(ServletConfig config) throws ServletException {
super.init(config);
ServletContext context = getServletContext();
actionMap.put("/api/person", new PersonRestAction(context));
actionMap.put("/api/event", new EventRestAction(context));
actionMap.put("/person", new PersonAction(context));
actionMap.put("/access-artifacts", new ArtifactAction(context));
actionMap.put("/logout", new LogoutAction(context));
actionMap.put("/event", new EventAction(context));