org.oddjob.arooa.runtime
Interface RuntimeListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
RuntimeListenerAdapter

public interface RuntimeListener
extends EventListener

Able to listen to configuration events from RuntimeConfigurations.

Implementations will mainly be child RuntimeConfigurations that wish to know when there parents are being configured.

Author:
rob

Method Summary
 void afterConfigure(RuntimeEvent event)
           
 void afterDestroy(RuntimeEvent event)
           
 void afterInit(RuntimeEvent event)
           
 void beforeConfigure(RuntimeEvent event)
           
 void beforeDestroy(RuntimeEvent event)
           
 void beforeInit(RuntimeEvent event)
           
 

Method Detail

beforeInit

void beforeInit(RuntimeEvent event)
                throws ArooaConfigurationException
Throws:
ArooaConfigurationException

afterInit

void afterInit(RuntimeEvent event)
               throws ArooaConfigurationException
Throws:
ArooaConfigurationException

beforeConfigure

void beforeConfigure(RuntimeEvent event)
                     throws ArooaConfigurationException
Throws:
ArooaConfigurationException

afterConfigure

void afterConfigure(RuntimeEvent event)
                    throws ArooaConfigurationException
Throws:
ArooaConfigurationException

beforeDestroy

void beforeDestroy(RuntimeEvent event)
                   throws ArooaConfigurationException
Throws:
ArooaConfigurationException

afterDestroy

void afterDestroy(RuntimeEvent event)
                  throws ArooaConfigurationException
Throws:
ArooaConfigurationException