Merge origin/master

Conflicts:
	web/WEB-INF/AuthentificationJSP.jsp
This commit is contained in:
thomas.millot
2021-10-18 17:15:48 +02:00
parent d13cdc2f75
commit 10c95e08ef
11 changed files with 145 additions and 128 deletions

View File

@@ -6,28 +6,30 @@
package com.test.beans;
import java.util.Objects;
/**
*
* @author thomas.millot
*/
public class User {
private String pseudo;
private String mdp;
public User(String pseudo, String mdp){
public User(String pseudo, String mdp) {
this.pseudo = pseudo;
this.mdp = mdp;
this.mdp = mdp;
}
public String getPseudo(){
public String getPseudo() {
return pseudo;
}
public String getMdp(){
public String getMdp() {
return mdp;
}
public void setMdp(){
public void setMdp() {
this.mdp = mdp;
}