Package org.apache.openjpa.event
Interface AttachListener
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface AttachListener
Listener for when a detached instance is attached.
- Author:
- Steve Kim
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterAttach
(LifecycleEvent event) Invoked after the instance has been attached.void
beforeAttach
(LifecycleEvent event) Invoked before the instance is attached.
-
Method Details
-
beforeAttach
Invoked before the instance is attached. -
afterAttach
Invoked after the instance has been attached.
-