Class HttpServerFilterChainElement
- java.lang.Object
-
- org.apache.hc.core5.http.io.support.HttpServerFilterChainElement
-
public final class HttpServerFilterChainElement extends java.lang.Object
An element in a request processing chain.- Since:
- 5.0
-
-
Field Summary
Fields Modifier and Type Field Description private HttpFilterChain
filterChain
private HttpFilterHandler
handler
private HttpServerFilterChainElement
next
-
Constructor Summary
Constructors Constructor Description HttpServerFilterChainElement(HttpFilterHandler handler, HttpServerFilterChainElement next)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
handle(ClassicHttpRequest request, HttpFilterChain.ResponseTrigger responseTrigger, HttpContext context)
java.lang.String
toString()
-
-
-
Field Detail
-
handler
private final HttpFilterHandler handler
-
next
private final HttpServerFilterChainElement next
-
filterChain
private final HttpFilterChain filterChain
-
-
Constructor Detail
-
HttpServerFilterChainElement
public HttpServerFilterChainElement(HttpFilterHandler handler, HttpServerFilterChainElement next)
-
-
Method Detail
-
handle
public void handle(ClassicHttpRequest request, HttpFilterChain.ResponseTrigger responseTrigger, HttpContext context) throws java.io.IOException, HttpException
- Throws:
java.io.IOException
HttpException
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-