* @return If the tab id represents a tab on the user's start page, true is returned, false or
* AuthorizationException (depending on throwException param) otherwise.
*/
public boolean canModifyGadgets(final String inAccountId, final Long inTabId, final boolean throwException)
{
AuthorizationException exception = throwException ? new AuthorizationException(
"Insufficient permissions to modify gadgets on tab.") : null;
return isCurrentUserStartTab(inAccountId, inTabId, exception);
}