* @throws UnknownEntityException if the permission does not exist.
*/
public Permission getPermissionByName(String name)
throws DataBackendException, UnknownEntityException
{
Permission permission = getAllPermissions().getPermissionByName(name);
if (permission == null)
{
throw new UnknownEntityException(
"The specified permission does not exist");
}