01: /*
02: * Created on Jan 8, 2004
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: import java.util.Observable;
10:
11: import org.xdev.base.core.object.Configuration;
12:
13: /**
14: * @author AYegorov
15: *
16: * To change the template for this generated type comment go to
17: * Window>Preferences>Java>Code Generation>Code and Comments
18: */
19: public interface ITransactionTriggerable {
20: public Object trigger(Configuration o, Object parameter)
21: throws Exception;
22: }
|