Package org.apache.axis2.context
Interface ContextListener
-
- All Known Implementing Classes:
ClusteringContextListener
public interface ContextListener
A ContextListener gets informed about new context creations & removal of existing contexts. Register one with a ConfigurationContext and you'll get notifications for every sub-context creation & removal event.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
contextCreated(AbstractContext context)
A context has been addedvoid
contextRemoved(AbstractContext context)
A context has been removed
-
-
-
Method Detail
-
contextCreated
void contextCreated(AbstractContext context)
A context has been added- Parameters:
context
-
-
contextRemoved
void contextRemoved(AbstractContext context)
A context has been removed- Parameters:
context
-
-
-