private User(String id, String fullName) { this.id = id; this.fullName = fullName; load(); }
/** Reloads the configuration from disk. */ public static void reload() { // iterate over an array to be concurrency-safe for (User u : byName.values().toArray(new User[0])) u.load(); }