public abstract class OncePerRequestHttpServerFilter extends Object implements HttpServerFilter
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE| Constructor and Description | 
|---|
| OncePerRequestHttpServerFilter() | 
| Modifier and Type | Method and Description | 
|---|---|
| Publisher<MutableHttpResponse<?>> | doFilter(HttpRequest<?> request,
        ServerFilterChain chain)Variation of the  HttpServerFilter.doFilter(HttpRequest, FilterChain)method that accepts aServerFilterChainwhich allows to mutate the outgoing HTTP response. | 
| protected abstract Publisher<MutableHttpResponse<?>> | doFilterOnce(HttpRequest<?> request,
            ServerFilterChain chain) | 
| static String | getKey(Class<? extends OncePerRequestHttpServerFilter> filterClass)Obtain the key used to store the attribute within a request. | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdoFilterpublic final Publisher<MutableHttpResponse<?>> doFilter(HttpRequest<?> request, ServerFilterChain chain)
HttpServerFilterHttpServerFilter.doFilter(HttpRequest, FilterChain) method that accepts a ServerFilterChain
 which allows to mutate the outgoing HTTP response.doFilter in interface HttpServerFilterrequest - The requestchain - The chainPublisher that emits a MutableHttpResponseHttpServerFilter.doFilter(HttpRequest, FilterChain)public static String getKey(Class<? extends OncePerRequestHttpServerFilter> filterClass)
filterClass - the filter classprotected abstract Publisher<MutableHttpResponse<?>> doFilterOnce(HttpRequest<?> request, ServerFilterChain chain)
request - The HttpRequest instancechain - The ServerFilterChain instancePublisher for the Http response