01: package com.opensymphony.webwork.util;
02:
03: import javax.servlet.ServletContext;
04:
05: /**
06: * Used to pass ServletContext init parameters to various
07: * frameworks such as Spring, Plexus and Portlet.
08: *
09: * @author plightbo
10: * @version $Date: 2006-03-16 15:44:02 +0100 (Thu, 16 Mar 2006) $ $Id: ObjectFactoryInitializable.java 2423 2006-03-16 14:44:02Z tmjee $
11: */
12: public interface ObjectFactoryInitializable {
13:
14: void init(ServletContext servletContext);
15:
16: }
|