<%@ page import="model.User" %> <%@ page import="model.Resource" %> <%-- Created by IntelliJ IDEA. User: Jose Date: 07/06/2018 Time: 16:39 To change this template use File | Settings | File Templates. --%> <% Resource resource = (Resource) request.getAttribute("Resource"); 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 Resource

<% if (editAllowed) {%>
Url:


Status:

<% } else {%>
Url: <%=resource.getUrl()%>
Status: <%=resource.getStatus()%>
<% } %>

arrow_backGo Back