Skip to content

Commit

Permalink
Fix the self-closing element JavaDocs issue (#775)
Browse files Browse the repository at this point in the history
  • Loading branch information
sberyozkin authored Mar 21, 2024
1 parent f5d161e commit 22bd823
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ public static JwtClaimsBuilder claims(JsonWebToken jwt) {
*
* Simple claim value are converted to {@link String} unless it is an instance of {@link Boolean}, {@link Number},
* {@link Instant} or {@link PublicKey}.
* <p/>
* <p>
* {@link Instant} values have their number of seconds from the epoch converted to long.
* <p/>
* <p>
* {@link PublicKey} values are converted to JSON Web Key (JWK) representations.
* <p/>
* <p>
* Array claims can be set as {@link Collection} or {@link JsonArray}, complex claims can be set as {@link Map} or
* {@link JsonObject}. The members of the array claims can be complex claims.
* <p/>
* <p>
* Types of the claims directly supported by this builder are enforced.
* The 'iss' (issuer), 'sub' (subject), 'upn', 'preferred_username' and 'jti' (token identifier) claims must be of
* {@link String} type.
Expand All @@ -133,14 +133,14 @@ public static JwtClaimsBuilder claim(Claims name, Object value) {
*
* Simple claim value are converted to {@link String} unless it is an instance of {@link Boolean}, {@link Number},
* {@link Instant} or {@linkplain PublicKey}.
* <p/>
* <p>
* {@link Instant} values have their number of seconds from the epoch converted to long.
* <p/>
* <p>
* {@link PublicKey} values are converted to JSON Web Key (JWK) representations.
* <p/>
* <p>
* Array claims can be set as {@link Collection} or {@link JsonArray}, complex claims can be set as {@link Map} or
* {@link JsonObject}. The members of the array claims can be complex claims.
* <p/>
* <p>
* Types of the claims directly supported by this builder are enforced.
* The 'iss' (issuer), 'sub' (subject), 'upn', 'preferred_username' and 'jti' (token identifier) claims must be of
* {@link String} type.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,14 @@ default JwtClaimsBuilder scope(String scope) {
*
* Simple claim value are converted to {@link String} unless it is an instance of {@link Boolean}, {@link Number},
* {@link Instant} or {@link PublicKey}.
* <p/>
* <p>
* {@link Instant} values have their number of seconds from the epoch converted to long.
* <p/>
* <p>
* {@link PublicKey} values are converted to JSON Web Key (JWK) representations.
* <p/>
* <p>
* Array claims can be set as {@link Collection} or {@link JsonArray}, complex claims can be set as {@link Map} or
* {@link JsonObject}. The members of the array claims can be complex claims.
* <p/>
* <p>
* Types of claims directly supported by this builder are enforced.
* The 'iss' (issuer), 'sub' (subject), 'upn', 'preferred_username' and 'jti' (token identifier) claims must be of
* {@link String} type.
Expand All @@ -213,14 +213,14 @@ default JwtClaimsBuilder claim(Claims name, Object value) {
*
* Simple claim value are converted to {@link String} unless it is an instance of {@link Boolean}, {@link Number},
* {@link Instant} or {@link PublicKey}.
* <p/>
* <p>
* {@link Instant} values have their number of seconds from the epoch converted to long.
* <p/>
* <p>
* {@link PublicKey} values are converted to JSON Web Key (JWK) representations.
* <p/>
* <p>
* Array claims can be set as {@link Collection} or {@link JsonArray}, complex claims can be set as {@link Map} or
* {@link JsonObject}. The members of the array claims can be complex claims.
* <p/>
* <p>
* Types of the claims directly supported by this builder are enforced.
* The 'iss' (issuer), 'sub' (subject), 'upn', 'preferred_username' and 'jti' (token identifier) claims must be of
* {@link String} type.
Expand Down

0 comments on commit 22bd823

Please sign in to comment.