This commit is contained in:
pro.boooooo
2022-12-08 02:10:28 +01:00
parent 51407d32cc
commit 0b995a0bcb
8 changed files with 18 additions and 2 deletions

View File

@@ -8,13 +8,15 @@ public class RequeteNP implements Requete {
private final int etuSource;
private final int type;
private final int witchGroupe;
private final String status;
public RequeteNP(int id, String message, int etuSource, int type, int witchGroupe) {
public RequeteNP(int id, String message, int etuSource, int type, int witchGroupe, String status) {
this.id = id;
this.message = message;
this.etuSource = etuSource;
this.type = type;
this.witchGroupe = witchGroupe;
this.status = status;
}
@Override
@@ -41,4 +43,9 @@ public class RequeteNP implements Requete {
public int getWitchGroupe() {
return this.witchGroupe;
}
@Override
public String getStatut() {
return this.status;
}
}