Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
6 | Andrea | 1 | <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> |
2 | <%@ page import="org.springframework.security.AccessDeniedException"%> |
||
3 | <%@ taglib prefix="s" uri="/struts-tags" %> |
||
4 | <script type="text/javascript"> |
||
5 | <!--// |
||
6 | function mostraDettagli() { |
||
7 | document.getElementById('dettagli').style.display = 'block'; |
||
8 | } |
||
9 | //--> |
||
10 | </script> |
||
11 | <div id="content"> |
||
12 | <% |
||
13 | Object o = session.getAttribute("SPRING_SECURITY_403_EXCEPTION"); |
||
14 | if (o != null && o instanceof AccessDeniedException) { |
||
15 | String messaggio = ((AccessDeniedException) o).getMessage(); |
||
16 | %> |
||
17 | <div id="accessoNegato"> |
||
18 | <h2>ACCESSO NEGATO</h2> |
||
19 | <h3> |
||
20 | L'utente <b><s:property value="#session.principal.username" /></b> |
||
21 | non ha i permessi necessari per accedere al servizio richiesto. |
||
22 | </h3> |
||
23 | <div> |
||
24 | <a href="javascript:mostraDettagli();">Mostra dettagli:</a> |
||
25 | </div> |
||
26 | <div id="dettagli" style="display:none;"> |
||
27 | <b>Il sistema di registrazione e monitoraggio ha risposto con il seguente messaggio:</b> |
||
28 | <br /><%=messaggio%> |
||
29 | </div> |
||
30 | </div> |
||
31 | <% |
||
32 | } |
||
33 | %> |
||
34 | </div> |
||
35 | |||
36 | |||
37 |