1 package org.oddjob.framework; 2 3 /** 4 * An inteface for the proxy to implement so that a proxy can be initialized. 5 * Initialisation is normally via reflection looking for, and invoking an init 6 * method but obviously this doesn't work for proxies. 7 * 8 * @author Rob Gordon 9 */ 10 public interface Initializable { 11 12 /** 13 * Initialise the job, All constant values and child components have been 14 * added by this point. 15 */ 16 public void init(); 17 } 18