01: /*
02: * Created on Dec 2, 2003
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.xssl.manage;
08:
09: /**
10: * @author AYegorov
11: *
12: * To change the template for this generated type comment go to
13: * Window>Preferences>Java>Code Generation>Code and Comments
14: */
15: public interface ITransactionFinalizable {
16: public static final String FINALIZE = "finalize";
17:
18: public void doFinalize() throws Exception;
19: }
|