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: import org.xdev.base.xssl.XSSLAction;
10:
11: /**
12: * @author AYegorov
13: *
14: * To change the template for this generated type comment go to
15: * Window>Preferences>Java>Code Generation>Code and Comments
16: */
17: public interface ITransactionDefinable {
18: public void define(int scope) throws Exception;
19:
20: public XSSLAction evaluateTarget(int scope);
21:
22: public int evaluateScope(String scopeString);
23: }
|