From af033a0eadd2f2aa3edf3c95df382d48bebbe7b7 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Fri, 20 Aug 2021 10:18:20 +0200 Subject: [PATCH] Remove remark about `AbstractAuditable`. This class only exists in Spring Data JPA, not in Commons. Closes #2437 --- src/main/asciidoc/auditing.adoc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/asciidoc/auditing.adoc b/src/main/asciidoc/auditing.adoc index 425adc33f..4227fd48b 100644 --- a/src/main/asciidoc/auditing.adoc +++ b/src/main/asciidoc/auditing.adoc @@ -64,8 +64,6 @@ class AuditMetadata { === Interface-based Auditing Metadata In case you do not want to use annotations to define auditing metadata, you can let your domain class implement the `Auditable` interface. It exposes setter methods for all of the auditing properties. -There is also a convenience base class, `AbstractAuditable`, which you can extend to avoid the need to manually implement the interface methods. Doing so increases the coupling of your domain classes to Spring Data, which might be something you want to avoid. Usually, the annotation-based way of defining auditing metadata is preferred as it is less invasive and more flexible. - [[auditing.auditor-aware]] === `AuditorAware`