Example usage for org.springframework.security.web.server WebFilterChainProxy WebFilterChainProxy

List of usage examples for org.springframework.security.web.server WebFilterChainProxy WebFilterChainProxy

Introduction

In this page you can find the example usage for org.springframework.security.web.server WebFilterChainProxy WebFilterChainProxy.

Prototype

public WebFilterChainProxy(SecurityWebFilterChain... filters) 

Source Link

Usage

From source file:org.springframework.security.config.web.server.ServerHttpSecurityTests.java

private WebTestClient buildClient() {
    WebFilterChainProxy springSecurityFilterChain = new WebFilterChainProxy(this.http.build());
    return WebTestClientBuilder.bindToWebFilters(springSecurityFilterChain).build();
}