Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)
}
}

@Override
public void init(FilterConfig filterConfig) {

}

private void sendToUnauthorizedPage(HttpServletRequest req, HttpServletResponse resp)
throws IOException, ServletException {
req.setAttribute("bodyContent", "content/401.jsp");
Expand Down Expand Up @@ -154,4 +159,4 @@ private Map<String,Set<String>> parse(List<String> routeAndRequiredGroupOrRole,
}
return parsedRoutes;
}
}
}