1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.edl.impl.bo;
17
18 import org.hibernate.annotations.GenericGenerator;
19 import org.hibernate.annotations.Parameter;
20 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21
22 import javax.persistence.*;
23 import java.io.Serializable;
24
25
26
27
28
29
30 @Entity
31 @Table(name="KREW_EDL_ASSCTN_T")
32
33 public class EDocLiteAssociation extends PersistableBusinessObjectBase implements Serializable{
34
35 private static final long serialVersionUID = 7300251507982374010L;
36
37
38
39 @Id
40 @GeneratedValue(generator="KREW_EDL_S")
41 @GenericGenerator(name="KREW_EDL_S",strategy="org.hibernate.id.enhanced.SequenceStyleGenerator",parameters={
42 @Parameter(name="sequence_name",value="KREW_EDL_S"),
43 @Parameter(name="value_column",value="id")
44 })
45 @Column(name="EDOCLT_ASSOC_ID")
46 private Long edocLiteAssocId;
47
48
49
50 @Column(name="DOC_TYP_NM")
51 private String edlName;
52
53
54
55 @Column(name="EDL_DEF_NM")
56 private String definition;
57
58
59
60 @Column(name="STYLE_NM")
61 private String style;
62
63
64
65 @Column(name="ACTV_IND")
66 private Boolean activeInd;
67
68 @Transient
69 private String actionsUrl;
70
71 public Long getEdocLiteAssocId() {
72 return edocLiteAssocId;
73 }
74 public void setEdocLiteAssocId(Long edocLiteAssocId) {
75 this.edocLiteAssocId = edocLiteAssocId;
76 }
77 public String getEdlName() {
78 return edlName;
79 }
80 public void setEdlName(String edlName) {
81 this.edlName = edlName;
82 }
83 public String getDefinition() {
84 return definition;
85 }
86 public void setDefinition(String definition) {
87 this.definition = definition;
88 }
89 public String getStyle() {
90 return style;
91 }
92 public void setStyle(String style) {
93 this.style = style;
94 }
95 public Boolean getActiveInd() {
96 return activeInd;
97 }
98 public void setActiveInd(Boolean activeInd) {
99 this.activeInd = activeInd;
100 }
101
102 public String getActionsUrl() {
103 return actionsUrl;
104 }
105 public void setActionsUrl(String actionsUrl) {
106 this.actionsUrl = actionsUrl;
107 }
108 }