Interface AfterConvertCallback<T>
- All Superinterfaces:
EntityCallback<T>
- All Known Implementing Classes:
AuditingEntityCallback
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Callback being invoked after a domain object is materialized from a
CouchbaseDocument
when reading results.- Since:
- 4.2
- Author:
- Michael Reiche
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiononAfterConvert
(T entity, CouchbaseDocument document, String collection) Entity callback method invoked after a domain object is materialized from aCouchbaseDocument
.
-
Method Details
-
onAfterConvert
Entity callback method invoked after a domain object is materialized from aCouchbaseDocument
. Can return either the same or a modified instance of the domain object.- Parameters:
entity
- the domain object (the result of the conversion).document
- must not be null.collection
- name of the collection.- Returns:
- the domain object that is the result of reading it from the
CouchbaseDocument
.
-