Closed
Description
WebClientReactiveAuthorizationCodeTokenResponseClient
would be more convenient to use if their respective webClient
properties could be set.
Let's add a setter, like:
/**
Use the given {@link WebClient}.
@param webClient The {@link WebClient} to use
@since 5.2
*/
public void setWebClient(WebClient webClient) {
Assert.notNull(webClient, "webClient cannot be null");
this.webClient = webClient;
}
As well as tests to confirm that the setter works.
Related to #6051