Package org.apache.openjpa.event
Interface StoreListener
-
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface StoreListener
Listener for when persistent instances are stored to the database.- Author:
- Steve Kim, Abe White
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterStore(LifecycleEvent event)
Invoked just after store.void
beforeStore(LifecycleEvent event)
Invoked just prior to store.
-
-
-
Method Detail
-
beforeStore
void beforeStore(LifecycleEvent event)
Invoked just prior to store.
-
afterStore
void afterStore(LifecycleEvent event)
Invoked just after store.
-
-