From b2e8a927f21711cdf5d67ee63c7f960ff7d214b9 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Sat, 22 Mar 2014 16:28:23 +0000 Subject: [PATCH] Javadoc git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1580244 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/http/impl/client/AuthenticationStrategyImpl.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/httpclient/src/main/java/org/apache/http/impl/client/AuthenticationStrategyImpl.java b/httpclient/src/main/java/org/apache/http/impl/client/AuthenticationStrategyImpl.java index e79037eff..1bfba689d 100644 --- a/httpclient/src/main/java/org/apache/http/impl/client/AuthenticationStrategyImpl.java +++ b/httpclient/src/main/java/org/apache/http/impl/client/AuthenticationStrategyImpl.java @@ -78,6 +78,10 @@ abstract class AuthenticationStrategyImpl implements AuthenticationStrategy { private final int challengeCode; private final String headerName; + /** + * @param challengeCode for example SC_PROXY_AUTHENTICATION_REQUIRED or SC_UNAUTHORIZED + * @param headerName for example "Proxy-Authenticate" or "WWW-Authenticate" + */ AuthenticationStrategyImpl(final int challengeCode, final String headerName) { super(); this.challengeCode = challengeCode;