Package org.apache.openjpa.event
Interface AttachListener
-
- All Known Subinterfaces:
LifecycleListener
- All Known Implementing Classes:
AbstractLifecycleListener
public interface AttachListenerListener for when a detached instance is attached.- Author:
- Steve Kim
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterAttach(LifecycleEvent event)Invoked after the instance has been attached.voidbeforeAttach(LifecycleEvent event)Invoked before the instance is attached.
-
-
-
Method Detail
-
beforeAttach
void beforeAttach(LifecycleEvent event)
Invoked before the instance is attached.
-
afterAttach
void afterAttach(LifecycleEvent event)
Invoked after the instance has been attached.
-
-