This commit is contained in:
basti 2021-01-11 10:23:11 +01:00
parent ccbc09fa94
commit e6bf6ca8b1

View file

@ -209,6 +209,15 @@ public class ListUI extends JFrame implements Runnable{
ListUI window = (ListUI) windowEvent.getSource();
GestionnaireNom.instance().supprimer2(); //TODO enlever 2 //debug
// on envoie l'info au servlet
try {
Post.sendPOST("delete$$$" + GestionnaireNom.instance().getId() + "$$$" + GestionnaireNom.instance().getNom()+ "$$$"
+ GestionnaireNom.instance().getIp() + "$$$" + GestionnaireNom.instance().getDansReseau() + "$$$"
+ GestionnaireNom.instance().getStatut() );
} catch (IOException e) {
e.printStackTrace();
}
}
});
}