152153154155156157158159160161162
res.add(info); } if (!accounts.isEmpty()) { for (Account account : db.get().accounts().get(accounts.keySet())) { AccountAttribute a = accounts.get(account.getId()); a.name = Strings.emptyToNull(account.getFullName()); } } if (format.isJson()) {
210211212213214215216217218219220221
private AccountAttribute asAccountAttribute(Account.Id user) { if (user == null) { return null; } AccountAttribute a = accounts.get(user); if (a == null) { a = new AccountAttribute(); accounts.put(user, a); } return a; }