public interface EntityInterceptor
| Modifier and Type | Method and Description |
|---|---|
void |
postLoad(Object ent,
DBObject dbObj,
Mapper mapper) |
void |
postPersist(Object ent,
DBObject dbObj,
Mapper mapper) |
void |
preLoad(Object ent,
DBObject dbObj,
Mapper mapper) |
void |
prePersist(Object ent,
DBObject dbObj,
Mapper mapper) |
void |
preSave(Object ent,
DBObject dbObj,
Mapper mapper) |
void postLoad(Object ent, DBObject dbObj, Mapper mapper)
ent - the entity being processeddbObj - the DBObject form of the entitymapper - the Mapper being usedPostLoadvoid postPersist(Object ent, DBObject dbObj, Mapper mapper)
ent - the entity being processeddbObj - the DBObject form of the entitymapper - the Mapper being usedPostPersistvoid preLoad(Object ent, DBObject dbObj, Mapper mapper)
ent - the entity being processeddbObj - the DBObject form of the entitymapper - the Mapper being usedPreLoadvoid prePersist(Object ent, DBObject dbObj, Mapper mapper)
ent - the entity being processeddbObj - the DBObject form of the entitymapper - the Mapper being usedPostPersist