-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Closed
Labels
in: oauth2An issue in OAuth2 modules (oauth2-core, oauth2-client, oauth2-resource-server, oauth2-jose)An issue in OAuth2 modules (oauth2-core, oauth2-client, oauth2-resource-server, oauth2-jose)status: first-timers-onlyAn issue that can only be worked on by brand new contributorsAn issue that can only be worked on by brand new contributorstype: enhancementA general enhancementA general enhancement
Milestone
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
Metadata
Metadata
Assignees
Labels
in: oauth2An issue in OAuth2 modules (oauth2-core, oauth2-client, oauth2-resource-server, oauth2-jose)An issue in OAuth2 modules (oauth2-core, oauth2-client, oauth2-resource-server, oauth2-jose)status: first-timers-onlyAn issue that can only be worked on by brand new contributorsAn issue that can only be worked on by brand new contributorstype: enhancementA general enhancementA general enhancement