From 5ef39d5dedc93acfb4f2911504ea53b738a9cd67 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Mon, 19 Jun 2023 11:55:02 +0200 Subject: [PATCH] Fix link to LoginToken Javadoc. Closes gh-788 --- src/main/asciidoc/reference/authentication.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/reference/authentication.adoc b/src/main/asciidoc/reference/authentication.adoc index 0a5a9717..1b9e02d7 100644 --- a/src/main/asciidoc/reference/authentication.adoc +++ b/src/main/asciidoc/reference/authentication.adoc @@ -909,7 +909,7 @@ Spring Vault provides with {self-docs-root}api/org/springframework/vault/authent Depending on the authentication method, a login can create two kinds of tokens: * {self-docs-root}api/org/springframework/vault/support/VaultToken.html[`VaultToken`]: Generic token encapsulating the actual token. -* {self-docs-root}api/org/springframework/vault/support/LoginToken.html[`LoginToken`]: Token associated with renewability/TTL. +* {self-docs-root}api/org/springframework/vault/authentication/LoginToken.html[`LoginToken`]: Token associated with renewability/TTL. Authentication methods such as {self-docs-root}api/org/springframework/vault/authentication/TokenAuthentication.html[`TokenAuthentication`] just create a `VaultToken` which does not carry any renewability/TTL details. `LifecycleAwareSessionManager` will run a self-lookup on the token to retrieve renewability and TTL from Vault. `VaultToken` are renewed periodically if self-lookup is enabled. Note that `VaultToken` are never revoked, only `LoginToken` are revoked.