Skip to content

Commit df61330

Browse files
committed
CheckStyle fixes
1 parent b74a376 commit df61330

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

security-jwt/src/main/java/io/micronaut/security/token/jwt/signature/jwks/JwksSignature.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ public boolean verify(SignedJWT jwt) throws JOSEException {
148148

149149
/**
150150
* Instantiates a JWKSet for a given url.
151+
* @param providerName The name of the JWKS configuration.
151152
* @param url JSON Web Key Set Url.
152153
* @return a JWKSet or null if there was an error.
153154
*/

security-oauth2/src/main/java/io/micronaut/security/oauth2/client/JwksUriSignatureFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
@Internal
4040
public class JwksUriSignatureFactory {
4141
/**
42-
*
42+
* @param clientConfiguration The OAuth 2.0 client configuration
4343
* @param openIdProviderMetadata The open id provider metadata
4444
* @param jwkValidator JWK Validator
4545
* @param jwkSetFetcher Json Web Key Set Fetcher

security-oauth2/src/main/java/io/micronaut/security/oauth2/endpoint/token/response/validation/DefaultOpenIdTokenResponseValidator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ protected Optional<JWT> validateClaims(@NonNull OauthClientConfiguration clientC
147147
}
148148

149149
/**
150+
* @param clientConfiguration The OAuth 2.0 client configuration
150151
* @param openIdProviderMetadata The OpenID provider metadata
151152
* @param openIdTokenResponse ID Token Access Token response
152153
* Uses the ID token in the OpenID connect response to extract a JSON Web token and validates its signature
@@ -164,7 +165,7 @@ protected Optional<JWT> parseJwtWithValidSignature(@NonNull OauthClientConfigura
164165
}
165166

166167
/**
167-
*
168+
* @param clientConfiguration The OAuth 2.0 client configuration
168169
* @param openIdProviderMetadata The OpenID provider metadata
169170
* @return A {@link JwksSignature} for the OpenID provider JWKS uri.
170171
*/

0 commit comments

Comments
 (0)