From c50f66b4a321789682e90a10d12d29ba06d41f33 Mon Sep 17 00:00:00 2001 From: Zihlu Wang Date: Fri, 4 Aug 2023 19:51:21 +0800 Subject: [PATCH] docs(simple-jwt-jjwt): Optimised documents. --- .../simplejwt/jjwt/package-info.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/simple-jwt-jjwt/src/main/java/cn/org/codecrafters/simplejwt/jjwt/package-info.java b/simple-jwt-jjwt/src/main/java/cn/org/codecrafters/simplejwt/jjwt/package-info.java index cf355ed..88c40b7 100644 --- a/simple-jwt-jjwt/src/main/java/cn/org/codecrafters/simplejwt/jjwt/package-info.java +++ b/simple-jwt-jjwt/src/main/java/cn/org/codecrafters/simplejwt/jjwt/package-info.java @@ -35,19 +35,19 @@ * integrating {@code io.jsonwebtoken:jjwt-api} as the JWT management library. * *

- * The {@code AuthzeroTokenResolver} relies on the {@code - * io.jsonwebtoken:jjwt-api} library to handle the underlying JWT operations, - * including token creation, validation, and extraction. It utilizes the {@code - * io.jsonwebtoken:jjwt-api} {@code Algorithm} class to define and use - * different algorithms for JWT signing and verification. + * The {@code JjwtTokenResolver} relies on the {@code io.jsonwebtoken:jjwt-api} + * library to handle the underlying JWT operations, including token creation, + * validation, and extraction. It utilizes the {@code io.jsonwebtoken:jjwt-api} + * {@code Algorithm} class to define and use different algorithms for JWT + * signing and verification. * *

- * To use the {@code AuthzeroTokenResolver}, developers must provide the - * necessary configurations and dependencies, such as the {@code GuidCreator} - * for generating unique JWT IDs (JTI), the supported algorithm function, the + * To use the {@code JjwtTokenResolver}, developers must provide the necessary + * configurations and dependencies, such as the {@code GuidCreator} for + * generating unique JWT IDs (JTI), the supported algorithm function, the * issuer name, and the secret key used for token signing and validation. The - * {@code AuthzeroTokenResolverConfig} class provides a convenient way to - * configure these dependencies. + * {@code JjwtTokenResolverConfig} class provides a convenient way to configure + * these dependencies. * *

* Developers using the {@code io.jsonwebtoken:jjwt-api} integration should be