throws DataBackendException, UnknownEntityException
{
Role role = getAllRoles().getRoleByName(name);
if (role == null)
{
throw new UnknownEntityException(
"The specified role does not exist");
}
role.setPermissions(getPermissions(role));
return role;
}