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.kuali.rice.krad.bo.PersistableBusinessObjectBase;
19 import org.kuali.rice.krad.data.jpa.converters.Boolean01Converter;
20 import org.kuali.rice.krad.data.jpa.PortableSequenceGenerator;
21
22 import javax.persistence.Column;
23 import javax.persistence.Convert;
24 import javax.persistence.Entity;
25 import javax.persistence.GeneratedValue;
26 import javax.persistence.Id;
27 import javax.persistence.Table;
28 import javax.persistence.Transient;
29
30
31
32
33
34
35
36 @Entity
37 @Table(name="KREW_EDL_ASSCTN_T")
38 public class EDocLiteAssociation extends PersistableBusinessObjectBase {
39
40 private static final long serialVersionUID = 7300251507982374010L;
41
42
43
44 @Id
45 @GeneratedValue(generator="KREW_EDL_S")
46 @PortableSequenceGenerator(name = "KREW_EDL_S")
47 @Column(name="EDOCLT_ASSOC_ID", nullable = false)
48 private Long edocLiteAssocId;
49
50
51
52 @Column(name="DOC_TYP_NM", nullable = false)
53 private String edlName;
54
55
56
57 @Column(name="EDL_DEF_NM")
58 private String definition;
59
60
61
62 @Column(name="STYLE_NM")
63 private String style;
64
65
66
67 @Convert(converter=Boolean01Converter.class)
68 @Column(name="ACTV_IND", nullable = false)
69 private Boolean activeInd;
70
71 @Transient
72 private String actionsUrl;
73
74
75
76
77
78 public Long getEdocLiteAssocId() {
79 return edocLiteAssocId;
80 }
81
82
83
84
85
86 public void setEdocLiteAssocId(Long edocLiteAssocId) {
87 this.edocLiteAssocId = edocLiteAssocId;
88 }
89
90
91
92
93
94 public String getEdlName() {
95 return edlName;
96 }
97
98
99
100
101 public void setEdlName(String edlName) {
102 this.edlName = edlName;
103 }
104
105
106
107
108
109 public String getDefinition() {
110 return definition;
111 }
112
113
114
115
116
117 public void setDefinition(String definition) {
118 this.definition = definition;
119 }
120
121
122
123
124
125 public String getStyle() {
126 return style;
127 }
128
129
130
131
132
133 public void setStyle(String style) {
134 this.style = style;
135 }
136
137
138
139
140
141 public Boolean getActiveInd() {
142 return activeInd;
143 }
144
145
146
147
148
149 public void setActiveInd(Boolean activeInd) {
150 this.activeInd = activeInd;
151 }
152
153
154
155
156
157 public String getActionsUrl() {
158 return actionsUrl;
159 }
160
161
162
163
164
165 public void setActionsUrl(String actionsUrl) {
166 this.actionsUrl = actionsUrl;
167 }
168 }