01: package com.bm.ejb3guice.inject; 02: 03: public interface CreationListner { 04: 05: /** 06: * Will be called every time after a Object is created. 07: * @param obj the created object 08: */ 09: void afterCreation(Object obj); 10: 11: }