%@ page import="org.springframework.security.core.context.SecurityContextHolder" %> <%@ page import="org.springframework.security.core.Authentication" %> <%@ page import="org.springframework.security.core.GrantedAuthority" %>
Authentication object is of type: <%= auth.getClass().getName() %>
Authentication object as a String:
<%= auth.toString() %>
Success! Your web filters appear to be properly configured!
<% } else { %> Authentication object is null.