Package org.xwiki.container
Interface ApplicationContextListener
-
@Role @Deprecated(since="3.5M1") public interface ApplicationContextListener
Deprecated.use the notion of Environment insteadAllows interested components to perform startup / shutdown tasks and be notified when theApplicationContextis created / being destroyed.- Since:
- 1.9M2
- Version:
- $Id: 8f0e4178114966071e72d5c8b4e7bfc1184a9dd8 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voiddestroyApplicationContext(ApplicationContext applicationContext)Deprecated.Invoked just beforeApplicationContextis destroyed.voidinitializeApplicationContext(ApplicationContext applicationContext)Deprecated.Invoked when theApplicationContextis created.
-
-
-
Method Detail
-
initializeApplicationContext
void initializeApplicationContext(ApplicationContext applicationContext)
Deprecated.Invoked when theApplicationContextis created.- Parameters:
applicationContext- theApplicationContext.
-
destroyApplicationContext
void destroyApplicationContext(ApplicationContext applicationContext)
Deprecated.Invoked just beforeApplicationContextis destroyed.- Parameters:
applicationContext- theApplicationContext.
-
-