01: /*
02: * Created on Dec 31, 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 java.util.HashMap;
10:
11: import org.xdev.base.xssl.XSSLAction;
12: import org.xdev.base.xssl.XSSLActionQueue;
13:
14: /**
15: * @author AYegorov
16: *
17: * To change the template for this generated type comment go to
18: * Window>Preferences>Java>Code Generation>Code and Comments
19: */
20: public class TransactionQueue extends XSSLActionQueue {
21:
22: /**
23: * @param id
24: */
25: public TransactionQueue(String id) {
26: super (id);
27: // XXX Auto-generated constructor stub
28: }
29:
30: /**
31: * @param id
32: * @param properties
33: */
34: public TransactionQueue(String id, HashMap properties) {
35: super (id, properties);
36: // XXX Auto-generated constructor stub
37: }
38:
39: /* (non-Javadoc)
40: * @see org.xdev.base.xssl.XSSLActionQueue#processQueueItem(org.xdev.base.xssl.XSSLAction)
41: */
42: protected void processQueueItem(XSSLAction item) throws Exception {
43: item.execute();
44: }
45:
46: }
|