Javadoc
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1580244 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
444b41a0a4
commit
b2e8a927f2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue