Package org.nuiton.topia.event
Interface TopiaContextListener
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
TopiaContextAdapter
public interface TopiaContextListener
extends java.util.EventListener
Listener for TopiaContext actions.
Listener are notified for action such as :
- createSchema
- updateSchema
- ...
- Version:
- $Id$
- Author:
- chatellier <chatellier@codelutin.com>
-
Method Summary
Modifier and Type Method Description voidpostCreateSchema(TopiaContextEvent event)Called after createSchema callvoidpostRestoreSchema(TopiaContextEvent event)Called after updateSchema callvoidpostUpdateSchema(TopiaContextEvent event)Called after updateSchema callvoidpreCreateSchema(TopiaContextEvent event)Called before createSchema callvoidpreRestoreSchema(TopiaContextEvent event)Called after updateSchema callvoidpreUpdateSchema(TopiaContextEvent event)Called before updateSchema call
-
Method Details
-
preCreateSchema
Called before createSchema call- Parameters:
event- evet
-
postCreateSchema
Called after createSchema call- Parameters:
event- event
-
preUpdateSchema
Called before updateSchema call- Parameters:
event- event
-
postUpdateSchema
Called after updateSchema call- Parameters:
event- event
-
preRestoreSchema
Called after updateSchema call- Parameters:
event- event
-
postRestoreSchema
Called after updateSchema call- Parameters:
event- event
-