339340341342343344345346347348349
ACL acl = db.getACL(); if (acl != null) { ACLEntry entry = acl.getEntry(user); if (entry != null) { roles = (List<String>)entry.getRoles(); entry.recycle(); } acl.recycle(); } } catch (Exception e) {