wisemapping-open-source/wise-webapp/src/main/webapp/jsp/accessDenied.jsp

21 lines
568 B
Plaintext
Raw Normal View History

2009-06-07 20:59:43 +02:00
<%@ page import="org.acegisecurity.context.SecurityContextHolder" %>
<%@ page import="org.acegisecurity.Authentication" %>
<%@ page import="org.acegisecurity.ui.AccessDeniedHandlerImpl" %>
<h1>Sorry, access is denied</h1>
<p>
<%= request.getAttribute(AccessDeniedHandlerImpl.ACEGI_SECURITY_ACCESS_DENIED_EXCEPTION_KEY)%>
<p>
<%
Authentication auth = SecurityContextHolder.getContext().getAuthentication();
if (auth != null) {
%>
Authentication object as a String: <%= auth.toString() %><BR><BR>
<% } %>