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
Modifier and TypeMethodDescriptionvoid
afterStore
(LifecycleEvent event) Invoked just after store.void
beforeStore
(LifecycleEvent event) Invoked just prior to store.
-
Method Details
-
beforeStore
Invoked just prior to store. -
afterStore
Invoked just after store.
-