/** Returns true iff an HTTP authentication problem has occured (credentials invalid). */
 boolean authCredentialsInvalid() {
   // if it is digest and the nonce is stale, we just
   // resubmit with a new nonce
   return (mAuthFailed && !(mAuthHeader.isDigest() && mAuthHeader.getStale()));
 }