01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.webwork.util;
06:
07: /**
08: * An interface indicating the lifecycle of an ObjectFactory implementation.
09: *
10: * @author tm_jee
11: * @version $Date: 2006-03-16 15:44:02 +0100 (Thu, 16 Mar 2006) $ $Id: ObjectFactoryLifecycle.java 2423 2006-03-16 14:44:02Z tmjee $
12: *
13: * @see ObjectFactoryLifecycle
14: * @see com.opensymphony.xwork.ObjectFactory
15: * @see com.opensymphony.webwork.util.ObjectFactoryInitializable
16: * @see com.opensymphony.webwork.util.ObjectFactoryDestroyable
17: */
18: public interface ObjectFactoryLifecycle extends
19: ObjectFactoryInitializable, ObjectFactoryDestroyable {
20:
21: }
|