refactor: 문서 개선 중

This commit is contained in:
donghyeon-ka
2026-09-21 14:30:55 +09:00
parent c93cdea150
commit 805a18f486
1497 changed files with 525837 additions and 59152 deletions
@@ -0,0 +1,18 @@
%% Bearer JWT가 검증과 역할 변환을 지나 principal이 된다
%% question: Resource Server가 받은 Bearer JWT는 어떤 검증과 변환 단계를 지나 authenticated principal이 되는가?
flowchart TB
n0["Bearer JWT"]
n1["NimbusJwtDecoder"]
n2["Issuer · Time validators"]
n3["AudienceValidator"]
n4["Validated Jwt"]
n5["Realm role converter"]
n6(["Authenticated principal"])
n0 -->|"decode"| n1
n1 -->|"signature ok"| n2
n2 -->|"claims"| n3
n3 -->|"valid audience"| n4
n4 -->|"realm roles"| n5
n5 -->|"authorities"| n6
classDef external stroke-dasharray: 6 4
class n6 external