01: /*
02: * Created on Mar 17, 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.core;
08:
09: import org.apache.log4j.Logger;
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 IPage {
18:
19: abstract Object evaluate() throws Exception;
20:
21: abstract String getType(String xmlTag);
22:
23: abstract Logger getLogger();
24:
25: abstract String getLoggerId();
26:
27: abstract String getName();
28:
29: abstract String getWorkingDirectory();
30:
31: abstract Object getTransactionController();
32:
33: abstract Object getTransactionRequest();
34:
35: abstract Object getTransactionResponse();
36:
37: abstract Object getTransactionConfig();
38:
39: abstract Object getTransactionAction();
40:
41: abstract Object getTransactionSession();
42:
43: abstract Object getParentTransaction();
44: }
|