01: /*
02: * Created on Dec 8, 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;
08:
09: import java.util.HashMap;
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 class XCopy extends XSSLReturnValue {
18:
19: /**
20: * @param id
21: */
22: public XCopy(String id) {
23: super (id);
24: // TODO Auto-generated constructor stub
25: }
26:
27: /**
28: * @param id
29: * @param properties
30: */
31: public XCopy(String id, HashMap properties) {
32: super (id, properties);
33: // TODO Auto-generated constructor stub
34: }
35:
36: /* (non-Javadoc)
37: * @see org.xdev.base.transaction.AbstractTransactionValue#returnValue(org.xdev.base.transaction.AbstractTransactionResult)
38: */
39: protected Object returnValue(XSSLReturn rs) throws Exception {
40: return rs.getObjectValue();
41: }
42:
43: }
|