*/
public List<PermissionEntry> getPermissions() {
List<PermissionEntry> entries = new ArrayList<PermissionEntry>();
for (Entry<Long, PermissionLevel> entry : this.permissions.entrySet()) {
long id = entry.getKey().longValue();
PermissionLevel action = entry.getValue();
entries.add(new PermissionEntry(id, action));
}
return entries;
}