Class AuthenticatingDecorator
- java.lang.Object
-
- org.apache.hc.client5.testing.classic.AuthenticatingDecorator
-
- All Implemented Interfaces:
org.apache.hc.core5.http.io.HttpServerRequestHandler
public class AuthenticatingDecorator extends java.lang.Object implements org.apache.hc.core5.http.io.HttpServerRequestHandler
-
-
Field Summary
Fields Modifier and Type Field Description private AuthenticationHandler<java.lang.String>
authenticationHandler
private Authenticator
authenticator
private org.apache.hc.core5.http.io.HttpServerRequestHandler
requestHandler
-
Constructor Summary
Constructors Constructor Description AuthenticatingDecorator(org.apache.hc.core5.http.io.HttpServerRequestHandler requestHandler, AuthenticationHandler<java.lang.String> authenticationHandler, Authenticator authenticator)
AuthenticatingDecorator(org.apache.hc.core5.http.io.HttpServerRequestHandler requestHandler, Authenticator authenticator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
customizeUnauthorizedResponse(org.apache.hc.core5.http.ClassicHttpResponse unauthorized)
void
handle(org.apache.hc.core5.http.ClassicHttpRequest request, org.apache.hc.core5.http.io.HttpServerRequestHandler.ResponseTrigger responseTrigger, org.apache.hc.core5.http.protocol.HttpContext context)
-
-
-
Field Detail
-
requestHandler
private final org.apache.hc.core5.http.io.HttpServerRequestHandler requestHandler
-
authenticationHandler
private final AuthenticationHandler<java.lang.String> authenticationHandler
-
authenticator
private final Authenticator authenticator
-
-
Constructor Detail
-
AuthenticatingDecorator
public AuthenticatingDecorator(org.apache.hc.core5.http.io.HttpServerRequestHandler requestHandler, AuthenticationHandler<java.lang.String> authenticationHandler, Authenticator authenticator)
- Since:
- 5.3
-
AuthenticatingDecorator
public AuthenticatingDecorator(org.apache.hc.core5.http.io.HttpServerRequestHandler requestHandler, Authenticator authenticator)
-
-
Method Detail
-
customizeUnauthorizedResponse
protected void customizeUnauthorizedResponse(org.apache.hc.core5.http.ClassicHttpResponse unauthorized)
-
handle
public void handle(org.apache.hc.core5.http.ClassicHttpRequest request, org.apache.hc.core5.http.io.HttpServerRequestHandler.ResponseTrigger responseTrigger, org.apache.hc.core5.http.protocol.HttpContext context) throws org.apache.hc.core5.http.HttpException, java.io.IOException
- Specified by:
handle
in interfaceorg.apache.hc.core5.http.io.HttpServerRequestHandler
- Throws:
org.apache.hc.core5.http.HttpException
java.io.IOException
-
-