Interface ServerCsrfTokenRequestResolver

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      reactor.core.publisher.Mono<java.lang.String> resolveCsrfTokenValue​(org.springframework.web.server.ServerWebExchange exchange, CsrfToken csrfToken)
      Returns the token value resolved from the provided ServerWebExchange and CsrfToken or Mono.empty() if not available.
    • Method Detail

      • resolveCsrfTokenValue

        reactor.core.publisher.Mono<java.lang.String> resolveCsrfTokenValue​(org.springframework.web.server.ServerWebExchange exchange,
                                                                            CsrfToken csrfToken)
        Returns the token value resolved from the provided ServerWebExchange and CsrfToken or Mono.empty() if not available.
        Parameters:
        exchange - the ServerWebExchange with the request being processed
        csrfToken - the CsrfToken created by the ServerCsrfTokenRepository
        Returns:
        the token value resolved from the request