All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javers.core.graph.ObjectAccessHook Maven / Gradle / Ivy

There is a newer version: 7.6.1
Show newest version
package org.javers.core.graph;

/**
 * Object access hook
 * 

* * Used for accessing object before commit. * i.e. to unproxy hibernate object before comparison * * Needs to be idempotent because JaVers could call it more than once during diff. * */ public interface ObjectAccessHook { T access(T entity); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy