Ejemplo n.º 1
0
 public boolean isAuthenticationRequested(
     HttpHost authhost, HttpResponse response, HttpContext context) {
   Args.notNull(response, "HTTP response");
   int status = response.getStatusLine().getStatusCode();
   return status == this.challengeCode;
 }