2018-06-17 16:26:01 +00:00
|
|
|
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
|
|
|
pageEncoding="ISO-8859-1"%>
|
2018-06-21 16:39:35 +00:00
|
|
|
<%@ page import="model.*"%>
|
2018-06-17 16:26:01 +00:00
|
|
|
<%
|
|
|
|
Access access = (Access)request.getAttribute("access");
|
|
|
|
String role = (String)request.getAttribute("role");
|
|
|
|
String resource = (String)request.getAttribute("resource");
|
|
|
|
%>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2018-06-07 21:50:55 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2018-06-17 16:26:01 +00:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
|
|
<title>Insert title here</title>
|
2018-06-07 21:50:55 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-06-17 16:26:01 +00:00
|
|
|
<span class="nav"><a href="/access">Back</a></span><p/>
|
|
|
|
<table border="0" cellspacing="1" cellpadding="5" bgcolor="#CCCCCC">
|
|
|
|
<tr bgcolor="#407BA8">
|
|
|
|
<td style="color: #ffffff; font-weight: bold;">ID</td>
|
|
|
|
<td bgcolor="#ffffff"><%= access.getId() %></td>
|
|
|
|
</tr>
|
|
|
|
<tr bgcolor="#407BA8">
|
|
|
|
<td style="color: #ffffff; font-weight: bold;">Role</td>
|
|
|
|
<td bgcolor="#ffffff"><%= role %></td>
|
|
|
|
</tr>
|
|
|
|
<tr bgcolor="#407BA8">
|
|
|
|
<td style="color: #ffffff; font-weight: bold;">Resource</td>
|
|
|
|
<td bgcolor="#ffffff"><%= resource %></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2018-06-07 21:50:55 +00:00
|
|
|
</body>
|
2018-06-17 16:26:01 +00:00
|
|
|
</html>
|