This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch 4_1_X in repository https://gitbox.apache.org/repos/asf/syncope.git
commit 3ee4fe9a293b94fa7597825551c68f4020a0d443 Author: Francesco Chicchiriccò <[email protected]> AuthorDate: Fri May 22 09:49:32 2026 +0200 Fixing javadocs --- .../src/main/java/org/apache/syncope/client/lib/SyncopeClient.java | 4 ++-- pom.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/idrepo/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClient.java b/client/idrepo/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClient.java index 472cd6dea3..ab84224010 100644 --- a/client/idrepo/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClient.java +++ b/client/idrepo/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClient.java @@ -264,7 +264,7 @@ public class SyncopeClient { * Currently supports: * <ul> * <li>{@link JWTAuthenticationHandler}</li> - * <li>{@link AnonymousAuthenticationHandler}</li> + * <li>{@link ObtainingJWTAuthenticationHandler}</li> * <li>{@link BasicAuthenticationHandler}</li> * </ul> * More can be supported by subclasses. @@ -371,7 +371,7 @@ public class SyncopeClient { * Returns the JWT in use by this instance and its expiration timestamp. * * @return the JWT in use by this instance and its expiration timestamp, or empty if - * {@link AnonymousAuthenticationHandler} was used. + * {@link ObtainingJWTAuthenticationHandler} was used. */ public Optional<JwtInfo> jwtInfo() { String value = Optional.ofNullable(restClientFactory.getHeaders().get(HttpHeaders.AUTHORIZATION)). diff --git a/pom.xml b/pom.xml index d9a1f26f83..142e377647 100644 --- a/pom.xml +++ b/pom.xml @@ -2281,7 +2281,7 @@ under the License. <link>https://cxf.apache.org/javadoc/latest/</link> <link>https://javadoc.io/static/com.fasterxml.jackson.core/jackson-core/2.21.2/</link> <link>https://javadoc.io/static/com.fasterxml.jackson.core/jackson-databind/2.21.2/</link> - <link>https://javadoc.io/static/com.fasterxml.jackson.core/jackson-annotations/2.21.2/</link> + <link>https://javadoc.io/static/com.fasterxml.jackson.core/jackson-annotations/2.21/</link> <link>https://javadoc.io/static/com.fasterxml.jackson.dataformat/jackson-dataformat-csv/2.21.2/</link> <link>https://nightlies.apache.org/wicket/apidocs/10.x/</link> <link>https://commons.apache.org/proper/commons-lang/javadocs/api-release/</link>
