wip: addr field

This commit is contained in:
2024-07-12 16:37:04 +02:00
parent 76d7a28678
commit 6c4b01590d
6 changed files with 269 additions and 12 deletions

View File

@@ -2,6 +2,9 @@ package fr.titionfire.ffsaf.utils;
import io.quarkus.runtime.annotations.RegisterForReflection;
import javax.naming.ldap.HasControls;
import java.util.HashMap;
@RegisterForReflection
public enum Contact {
COURRIEL("Courriel"),
@@ -20,8 +23,11 @@ public enum Contact {
this.name = name;
}
@Override
public String toString() {
return name;
public static HashMap<String, String> toSite() {
HashMap<String, String> map = new HashMap<>();
for (Contact contact : Contact.values()) {
map.put(contact.toString(), contact.name);
}
return map;
}
}