Blame | Last modification | View Log | Download | RSS feed
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ page import="org.springframework.security.AccessDeniedException"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<script type="text/javascript">
<!--//
function mostraDettagli() {
document.getElementById('dettagli').style.display = 'block';
}
//-->
</script>
<div id="content">
<%
Object o = session.getAttribute("SPRING_SECURITY_403_EXCEPTION");
if (o != null && o instanceof AccessDeniedException) {
String messaggio = ((AccessDeniedException) o).getMessage();
%>
<div id="accessoNegato">
<h2>ACCESSO NEGATO</h2>
<h3>
L'utente <b><s:property value="#session.principal.username" /></b>
non ha i permessi necessari per accedere al servizio richiesto.
</h3>
<div>
<a href="javascript:mostraDettagli();">Mostra dettagli:</a>
</div>
<div id="dettagli" style="display:none;">
<b>Il sistema di registrazione e monitoraggio ha risposto con il seguente messaggio:</b>
<br /><%=messaggio%>
</div>
</div>
<%
}
%>
</div>