01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.webwork.util;
06:
07: /**
08: * An interface to be implemented by any ObjectFactory implementation
09: * if it requires shutdown hook whenever an ObjectFactory is to be
10: * destroyed.
11: *
12: * @author tm_jee
13: * @version $Date: 2006-03-16 15:44:02 +0100 (Thu, 16 Mar 2006) $ $Id: ObjectFactoryDestroyable.java 2423 2006-03-16 14:44:02Z tmjee $
14: *
15: * @see com.opensymphony.webwork.dispatcher.FilterDispatcher
16: * @see com.opensymphony.webwork.dispatcher.DispatcherUtils
17: */
18: public interface ObjectFactoryDestroyable {
19: void destroy();
20: }
|