feat(Event): 2.6 - Traitement de l’évènement "AUTH"

This commit is contained in:
bouclyma 2024-12-28 02:42:16 +01:00
parent 9120d5c4ca
commit d2ad689b48
2 changed files with 70 additions and 0 deletions

View file

@ -9,4 +9,16 @@ public class ContactMap extends TreeMap<String, Contact> {
public Contact getContact(String login) {
return this.get(login);
}
public void loadDefaultContacts() {
this.put("mickey", new Contact("mickey", null));
this.put("minnie", new Contact("minnie", null));
this.put("dingo", new Contact("dingo", null));
this.put("riri", new Contact("riri", null));
this.put("fifi", new Contact("fifi", null));
this.put("loulou", new Contact("loulou", null));
this.put("donald", new Contact("donald", null));
this.put("daisy", new Contact("daisy", null));
this.put("picsou", new Contact("picsou", null));
}
}