@Override
protected void doGet(final HttpServletRequest req,
final HttpServletResponse resp) throws ServletException,
IOException {
FileLocation file = controller.locate(req.getPathInfo().substring(1));
switch(file.type){
case NOT_FOUND:
resp.sendError(HttpServletResponse.SC_NOT_FOUND, file.content);
break;