You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/authentication/JwtIssuerAuthenticationManagerResolver.java
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -47,10 +47,10 @@
47
47
* "https://openid.net/specs/openid-connect-core-1_0.html#IssuerIdentifier">Issuer</a> in
48
48
* a signed JWT (JWS).
49
49
*
50
-
* To use, this class must be able to determine whether or not the `iss` claim is trusted.
51
-
* Recall that anyone can stand up an authorization server and issue valid tokens to a
52
-
* resource server. The simplest way to achieve this is to supply a list of trusted
53
-
* issuers in the constructor.
50
+
* To use, this class must be able to determine whether the `iss` claim is trusted. Recall
51
+
* that anyone can stand up an authorization server and issue valid tokens to a resource
52
+
* server. The simplest way to achieve this is to supply a list of trusted issuers in the
53
+
* constructor.
54
54
*
55
55
* This class derives the Issuer from the `iss` claim found in the
56
56
* {@link HttpServletRequest}'s
@@ -67,7 +67,7 @@ public final class JwtIssuerAuthenticationManagerResolver implements Authenticat
67
67
/**
68
68
* Construct a {@link JwtIssuerAuthenticationManagerResolver} using the provided
69
69
* parameters
70
-
* @param trustedIssuers a list of trusted issuers
70
+
* @param trustedIssuers an array of trusted issuers
Copy file name to clipboardExpand all lines: oauth2/oauth2-resource-server/src/main/java/org/springframework/security/oauth2/server/resource/authentication/JwtIssuerReactiveAuthenticationManagerResolver.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -46,10 +46,10 @@
46
46
* "https://openid.net/specs/openid-connect-core-1_0.html#IssuerIdentifier">Issuer</a> in
47
47
* a signed JWT (JWS).
48
48
*
49
-
* To use, this class must be able to determine whether or not the `iss` claim is trusted.
50
-
* Recall that anyone can stand up an authorization server and issue valid tokens to a
51
-
* resource server. The simplest way to achieve this is to supply a list of trusted
52
-
* issuers in the constructor.
49
+
* To use, this class must be able to determine whether the `iss` claim is trusted. Recall
50
+
* that anyone can stand up an authorization server and issue valid tokens to a resource
51
+
* server. The simplest way to achieve this is to supply a list of trusted issuers in the
52
+
* constructor.
53
53
*
54
54
* This class derives the Issuer from the `iss` claim found in the
55
55
* {@link ServerWebExchange}'s
@@ -68,7 +68,7 @@ public final class JwtIssuerReactiveAuthenticationManagerResolver
68
68
/**
69
69
* Construct a {@link JwtIssuerReactiveAuthenticationManagerResolver} using the
70
70
* provided parameters
71
-
* @param trustedIssuers a list of trusted issuers
71
+
* @param trustedIssuers an array of trusted issuers
0 commit comments