01: /**
02: *
03: */package org.emforge.report.dao;
04:
05: import org.emforge.xfer.EmForgeObject;
06:
07: /**
08: * Report object interface.
09: *
10: * @author szakusov, 09.04.2008: created.
11: */
12: public interface Report extends EmForgeObject {
13:
14: /**
15: * @return the version
16: */
17: public Integer getVersion();
18:
19: /**
20: * @param i_version the version to set
21: */
22: public void setVersion(Integer i_version);
23:
24: /**
25: * @return the description
26: */
27: public String getDescription();
28:
29: /**
30: * @param i_description the description to set
31: */
32: public void setDescription(String i_description);
33:
34: /**
35: * @return the link to the compiled report
36: */
37: public String getLink();
38:
39: /**
40: * @param i_link the link to set
41: */
42: public void setLink(String i_link);
43: }
|