Issue #7545 - changes from review

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2022-02-08 15:59:23 +11:00
parent e1d149f84c
commit 5fe999caa2
6 changed files with 11 additions and 8 deletions

View File

@ -88,9 +88,12 @@ public class OpenIdConfiguration extends ContainerLifeCycle
* @param httpClient The {@link HttpClient} instance to use. * @param httpClient The {@link HttpClient} instance to use.
*/ */
public OpenIdConfiguration(@Name("issuer") String issuer, public OpenIdConfiguration(@Name("issuer") String issuer,
@Name("authorizationEndpoint") String authorizationEndpoint, @Name("tokenEndpoint") String tokenEndpoint, @Name("authorizationEndpoint") String authorizationEndpoint,
@Name("clientId") String clientId, @Name("clientSecret") String clientSecret, @Name("tokenEndpoint") String tokenEndpoint,
@Name("authMethod") String authMethod, @Name("httpClient") HttpClient httpClient) @Name("clientId") String clientId,
@Name("clientSecret") String clientSecret,
@Name("authMethod") String authMethod,
@Name("httpClient") HttpClient httpClient)
{ {
this.issuer = issuer; this.issuer = issuer;
this.clientId = clientId; this.clientId = clientId;