From a9dec9bae42879121fc280f705cc2c4aa39ecd24 Mon Sep 17 00:00:00 2001 From: "clementine.desrucques" Date: Thu, 21 Oct 2021 16:23:58 +0200 Subject: [PATCH] --- src/java/bdd/PompierMySql.java | 17 +++++++++++++++++ web/WEB-INF/accueilJSP.jsp | 33 ++++++++++++++++++--------------- 2 files changed, 35 insertions(+), 15 deletions(-) diff --git a/src/java/bdd/PompierMySql.java b/src/java/bdd/PompierMySql.java index fded535..392eae1 100644 --- a/src/java/bdd/PompierMySql.java +++ b/src/java/bdd/PompierMySql.java @@ -196,6 +196,19 @@ public class PompierMySql { resultQ.getInt("grade"), resultQ.getString("commentaire") ); + + switch(resultQ.getInt("statut")){ + case 1: + setResultat("Pompier"); + break; + case 2: + setResultat("Chef"); + break; + case 3: + setResultat("Alerte"); + break; + } + HttpSession maSession = request.getSession(); maSession.setAttribute("lePompier", lePompier); } @@ -206,4 +219,8 @@ public class PompierMySql { return resultat; } + private void setResultat(String pompier) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + } diff --git a/web/WEB-INF/accueilJSP.jsp b/web/WEB-INF/accueilJSP.jsp index 79994f7..967095e 100644 --- a/web/WEB-INF/accueilJSP.jsp +++ b/web/WEB-INF/accueilJSP.jsp @@ -9,19 +9,22 @@ <%@page contentType="text/html" pageEncoding="UTF-8"%> -
- Authentification -
-
-

- -
-
- - - -

${controlForm.getResultat()}

- +
+ Authentification +
+
+

+ +
+
-
\ No newline at end of file + +

${controlForm.getResultat()}

+
+ + + + + +