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.

@FunctionalInterface public interface AfterConvertCallback<T> extends EntityCallback<T>
Callback being invoked after a domain object is materialized from a CouchbaseDocument when reading results.
Since:
4.2
Author:
Michael Reiche
See Also:
  • Method Details

    • onAfterConvert

      T onAfterConvert(T entity, CouchbaseDocument document, String collection)
      Entity callback method invoked after a domain object is materialized from a CouchbaseDocument. 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.