<%@ page import="model.User" %> <%@ page import="model.Role" %> <%-- Created by IntelliJ IDEA. User: Fernando Date: 07/06/2018 Time: 16:39 To change this template use File | Settings | File Templates. --%> <% Role roleKey = (Role) request.getAttribute("Role"); User usuario = (User) request.getAttribute("UserLogged"); boolean editAllowed = (Boolean) request.getAttribute("editAllowed"); String action = (String) request.getAttribute("action");%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <%=action%> a User - Hotel Services

<%=action%> a Role

<% if (editAllowed) {%>
Name:

Status:


<% } else {%>
Name: <%=roleKey.getName()%>
Status: <%=roleKey.getStatus()%>
<% } %>

arrow_backGo Back