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

<%=action%> a Service

<% if (editAllowed) {%>
Name of the Service:

Price of the Service:

Description of the Service:

<% } else {%>
Name: <%= service.getName() %>
Price: <%= service.getPrice() %>
Description: <%= service.getDescription() %>
Created by: <%= service.getCreatorUserName() %>
<% } %>

arrow_backGo Back