@Override
protected void startJetty() {
HandlerList handlerList;
ServletContextHandler context = new ServletContextHandler(ServletContextHandler.SESSIONS);
context.setContextPath("/graphaware");
context.addLifeCycleListener(new JettyStartingListener(context.getServletContext()));
//If http logging is turned on, the jetty handler is a RequestLogHandler with a different type hierarchy than
//the HandlerList returned when http logging is off
if(getJetty().getHandler().getClass().equals(RequestLogHandler.class)) {
handlerList = (HandlerList)((RequestLogHandler)getJetty().getHandler()).getHandler();