All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oddjob.arooa.life.ArooaLifeAware Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package org.oddjob.arooa.life;

/**
 * Implementers will be informed of framework life cycle events.
 * 
 * @author rob
 *
 */
public interface ArooaLifeAware {

	/**
	 * The configuration for the bean has been initialised. 
	 * Constant properties and
	 * element properties will have been injected.
	 */
	public void initialised();
	
	/**
	 * The configuration for the bean has been fully configured. 
	 * Runtime properties will 
	 * have been injected.
	 */
	public void configured();
	
	/**
	 * The configuration for the bean is about to be destroyed. A
	 * bean can use this method to free resources.
	 */
	public void destroy();	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy