// some admin access user has been defined in the configuration file
else if (_permissions.isAuthorized(TaskPermissions.ACTION_READ, task, credentials))
return;
// fire the exception, this user cannot read this task
else
throw new AccessDeniedException(credentials.getUserID() + " cannot access task:" + taskID);
}