Package org.apache.openjpa.event
Interface LoadListener
-
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface LoadListenerListener for when state is loaded into a persistent instnace.- Author:
- Steve Kim, Abe White
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterLoad(LifecycleEvent event)Invoked after state has been loaded into the instance.voidafterRefresh(LifecycleEvent event)Invoked after state has been refreshed.
-
-
-
Method Detail
-
afterLoad
void afterLoad(LifecycleEvent event)
Invoked after state has been loaded into the instance.
-
afterRefresh
void afterRefresh(LifecycleEvent event)
Invoked after state has been refreshed.
-
-