01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.xwork.interceptor.component;
06:
07: /**
08: * @author plightbo
09: * @version $Revision: 866 $
10: * @deprecated WebWork's IoC has been deprecated, please use an alternative such as Spring.
11: */
12: public interface Disposable {
13:
14: public void dispose();
15: }
|