Interface PojoIndexingProcessorRootContext
-
public interface PojoIndexingProcessorRootContext
The context passed to aPojoIndexingProcessor
and propagated to every node.This includes access to the session, in particular.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isDeleted(Object unproxiedObject)
PojoIndexingProcessorSessionContext
sessionContext()
-
-
-
Method Detail
-
sessionContext
PojoIndexingProcessorSessionContext sessionContext()
-
isDeleted
boolean isDeleted(Object unproxiedObject)
- Parameters:
unproxiedObject
- An object that was already unproxied usingPojoRuntimeIntrospector.unproxy(Object)
.- Returns:
true
if this object is an entity and is considered deleted in the current context,false
otherwise.
-
-