1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.lu.entity; |
17 |
|
|
18 |
|
import java.util.Date; |
19 |
|
import java.util.List; |
20 |
|
|
21 |
|
import javax.persistence.AttributeOverride; |
22 |
|
import javax.persistence.AttributeOverrides; |
23 |
|
import javax.persistence.CascadeType; |
24 |
|
import javax.persistence.Column; |
25 |
|
import javax.persistence.Embedded; |
26 |
|
import javax.persistence.Entity; |
27 |
|
import javax.persistence.JoinColumn; |
28 |
|
import javax.persistence.JoinTable; |
29 |
|
import javax.persistence.ManyToOne; |
30 |
|
import javax.persistence.NamedQueries; |
31 |
|
import javax.persistence.NamedQuery; |
32 |
|
import javax.persistence.OneToMany; |
33 |
|
import javax.persistence.OneToOne; |
34 |
|
import javax.persistence.Table; |
35 |
|
import javax.persistence.Temporal; |
36 |
|
import javax.persistence.TemporalType; |
37 |
|
import javax.persistence.UniqueConstraint; |
38 |
|
|
39 |
|
import org.kuali.student.common.entity.Amount; |
40 |
|
import org.kuali.student.common.entity.AttributeOwner; |
41 |
|
import org.kuali.student.common.entity.TimeAmount; |
42 |
|
import org.kuali.student.common.entity.VersionEntity; |
43 |
|
|
44 |
|
@Entity |
45 |
|
@Table(name = "KSLU_CLU", uniqueConstraints={@UniqueConstraint(columnNames={"VER_IND_ID", "SEQ_NUM"})} ) |
46 |
|
@NamedQueries( { |
47 |
|
|
48 |
|
|
49 |
|
@NamedQuery(name = "Clu.findCurrentVersionInfo", query = "SELECT " + |
50 |
|
"NEW org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo(c.id, c.version.versionIndId, c.version.sequenceNumber, c.version.currentVersionStart, c.version.currentVersionEnd, c.version.versionComment, c.version.versionedFromId) " + |
51 |
|
"FROM Clu c " + |
52 |
|
"WHERE c.version.versionIndId = :versionIndId " + |
53 |
|
"AND c.version.currentVersionStart <= :currentTime AND (c.version.currentVersionEnd > :currentTime OR c.version.currentVersionEnd IS NULL)"), |
54 |
|
@NamedQuery(name = "Clu.findCurrentVersionOnDate", query = "SELECT " + |
55 |
|
"NEW org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo(c.id, c.version.versionIndId, c.version.sequenceNumber, c.version.currentVersionStart, c.version.currentVersionEnd, c.version.versionComment, c.version.versionedFromId) " + |
56 |
|
"FROM Clu c " + |
57 |
|
"WHERE c.version.versionIndId = :versionIndId " + |
58 |
|
"AND c.version.currentVersionStart <= :date AND (c.version.currentVersionEnd > :date OR c.version.currentVersionEnd IS NULL)"), |
59 |
|
@NamedQuery(name = "Clu.findFirstVersion", query = "SELECT " + |
60 |
|
"NEW org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo(c.id, c.version.versionIndId, c.version.sequenceNumber, c.version.currentVersionStart, c.version.currentVersionEnd, c.version.versionComment, c.version.versionedFromId) " + |
61 |
|
"FROM Clu c " + |
62 |
|
"WHERE c.version.versionIndId = :versionIndId " + |
63 |
|
"AND c.version.sequenceNumber IN (SELECT MIN(nc.version.sequenceNumber) FROM Clu nc WHERE nc.version.versionIndId = :versionIndId)"), |
64 |
|
@NamedQuery(name = "Clu.findLatestVersion", query = "SELECT " + |
65 |
|
"NEW org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo(c.id, c.version.versionIndId, c.version.sequenceNumber, c.version.currentVersionStart, c.version.currentVersionEnd, c.version.versionComment, c.version.versionedFromId) " + |
66 |
|
"FROM Clu c " + |
67 |
|
"WHERE c.version.versionIndId = :versionIndId " + |
68 |
|
"AND c.version.sequenceNumber IN (SELECT MAX(nc.version.sequenceNumber) FROM Clu nc WHERE nc.version.versionIndId = :versionIndId)"), |
69 |
|
@NamedQuery(name = "Clu.findVersionBySequence", query = "SELECT " + |
70 |
|
"NEW org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo(c.id, c.version.versionIndId, c.version.sequenceNumber, c.version.currentVersionStart, c.version.currentVersionEnd, c.version.versionComment, c.version.versionedFromId) " + |
71 |
|
"FROM Clu c " + |
72 |
|
"WHERE c.version.versionIndId = :versionIndId " + |
73 |
|
"AND c.version.sequenceNumber = :sequenceNumber"), |
74 |
|
@NamedQuery(name = "Clu.findVersions", query = "SELECT " + |
75 |
|
"NEW org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo(c.id, c.version.versionIndId, c.version.sequenceNumber, c.version.currentVersionStart, c.version.currentVersionEnd, c.version.versionComment, c.version.versionedFromId) " + |
76 |
|
"FROM Clu c " + |
77 |
|
"WHERE c.version.versionIndId = :versionIndId"), |
78 |
|
@NamedQuery(name = "Clu.findVersionsInDateRange", query = "SELECT " + |
79 |
|
"NEW org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo(c.id, c.version.versionIndId, c.version.sequenceNumber, c.version.currentVersionStart, c.version.currentVersionEnd, c.version.versionComment, c.version.versionedFromId) " + |
80 |
|
"FROM Clu c " + |
81 |
|
"WHERE c.version.versionIndId = :versionIndId " + |
82 |
|
"AND ( (c.version.currentVersionStart >= :from AND c.version.currentVersionStart < :to)" + |
83 |
|
" OR (c.version.currentVersionStart < :from AND c.version.currentVersionEnd > :from) )"), |
84 |
|
@NamedQuery(name = "Clu.findVersionsBeforeDate", query = "SELECT " + |
85 |
|
"NEW org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo(c.id, c.version.versionIndId, c.version.sequenceNumber, c.version.currentVersionStart, c.version.currentVersionEnd, c.version.versionComment, c.version.versionedFromId) " + |
86 |
|
"FROM Clu c " + |
87 |
|
"WHERE c.version.versionIndId = :versionIndId " + |
88 |
|
"AND c.version.currentVersionStart <= :date"), |
89 |
|
@NamedQuery(name = "Clu.findVersionsAfterDate", query = "SELECT " + |
90 |
|
"NEW org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo(c.id, c.version.versionIndId, c.version.sequenceNumber, c.version.currentVersionStart, c.version.currentVersionEnd, c.version.versionComment, c.version.versionedFromId) " + |
91 |
|
"FROM Clu c " + |
92 |
|
"WHERE c.version.versionIndId = :versionIndId " + |
93 |
|
"AND c.version.currentVersionStart >= :date"), |
94 |
|
@NamedQuery(name = "Clu.findLatestClu", query = "SELECT c FROM Clu c WHERE c.version.versionIndId = :versionIndId AND c.version.sequenceNumber IN (SELECT MAX(nc.version.sequenceNumber) FROM Clu nc WHERE nc.version.versionIndId = :versionIndId)"), |
95 |
|
@NamedQuery(name = "Clu.findCurrentClu", query = "SELECT c FROM Clu c WHERE c.version.versionIndId = :versionIndId AND c.version.currentVersionStart <= :currentTime AND (c.version.currentVersionEnd > :currentTime OR c.version.currentVersionEnd IS NULL)"), |
96 |
|
@NamedQuery(name = "Clu.findClusByIdList", query = "SELECT c FROM Clu c WHERE c.id IN (:idList)"), |
97 |
|
@NamedQuery(name = "Clu.getClusByLuType", query = "SELECT c FROM Clu c WHERE c.state = :luState AND c.luType.id = :luTypeKey"), |
98 |
|
@NamedQuery(name = "Clu.getClusByRelation", query = "SELECT c FROM Clu c WHERE c.id IN (SELECT ccr.relatedClu.id FROM CluCluRelation ccr WHERE ccr.clu.id = :parentCluId AND ccr.luLuRelationType.id = :luLuRelationTypeKey)"), |
99 |
|
@NamedQuery(name = "Clu.getCrossListedClusByCodes", query = "SELECT c FROM Clu c WHERE c.state='Active' AND c.officialIdentifier.code IN (:crossListedCodes) ") |
100 |
|
|
101 |
|
}) |
|
|
| 100% |
Uncovered Elements: 0 (124) |
Complexity: 62 |
Complexity Density: 1 |
|
102 |
|
public class Clu extends VersionEntity implements AttributeOwner<CluAttribute> { |
103 |
|
|
104 |
|
@OneToOne(cascade=CascadeType.ALL) |
105 |
|
@JoinColumn(name = "OFFIC_CLU_ID") |
106 |
|
private CluIdentifier officialIdentifier; |
107 |
|
|
108 |
|
@OneToMany(cascade=CascadeType.ALL) |
109 |
|
@JoinTable(name = "KSLU_CLU_JN_CLU_IDENT", joinColumns = @JoinColumn(name = "CLU_ID"), inverseJoinColumns = @JoinColumn(name = "ALT_CLU_ID")) |
110 |
|
private List<CluIdentifier> alternateIdentifiers; |
111 |
|
|
112 |
|
@Column(name = "STDY_SUBJ_AREA") |
113 |
|
private String studySubjectArea; |
114 |
|
|
115 |
|
@ManyToOne(cascade=CascadeType.ALL) |
116 |
|
@JoinColumn(name = "RT_DESCR_ID") |
117 |
|
private LuRichText descr; |
118 |
|
|
119 |
|
@OneToMany(cascade=CascadeType.ALL, mappedBy = "clu") |
120 |
|
private List<CluCampusLocation> campusLocations; |
121 |
|
|
122 |
|
@OneToMany(cascade=CascadeType.ALL) |
123 |
|
@JoinTable(name = "KSLU_CLU_JN_ACCRED", joinColumns = @JoinColumn(name = "CLU_ID"), inverseJoinColumns = @JoinColumn(name = "CLU_ACCRED_ID")) |
124 |
|
private List<CluAccreditation> accreditations; |
125 |
|
|
126 |
|
@OneToMany(cascade = CascadeType.ALL, mappedBy = "clu") |
127 |
|
private List<CluAdminOrg> adminOrgs; |
128 |
|
|
129 |
|
@ManyToOne(cascade=CascadeType.ALL) |
130 |
|
@JoinColumn(name="PRI_INSTR_ID") |
131 |
|
private CluInstructor primaryInstructor; |
132 |
|
|
133 |
|
@OneToMany(cascade=CascadeType.ALL) |
134 |
|
@JoinTable(name = "KSLU_CLU_JN_CLU_INSTR", joinColumns = @JoinColumn(name = "CLU_ID"), inverseJoinColumns = @JoinColumn(name = "CLU_INSTR_ID")) |
135 |
|
private List<CluInstructor> instructors; |
136 |
|
|
137 |
|
@Column(name = "EXP_FIRST_ATP") |
138 |
|
private String expectedFirstAtp; |
139 |
|
|
140 |
|
@Column(name = "LAST_ATP") |
141 |
|
private String lastAtp; |
142 |
|
|
143 |
|
@Column(name = "LAST_ADMIT_ATP") |
144 |
|
private String lastAdmitAtp; |
145 |
|
|
146 |
|
@Temporal(TemporalType.TIMESTAMP) |
147 |
|
@Column(name = "EFF_DT") |
148 |
|
private Date effectiveDate; |
149 |
|
|
150 |
|
@Temporal(TemporalType.TIMESTAMP) |
151 |
|
@Column(name = "EXPIR_DT") |
152 |
|
private Date expirationDate; |
153 |
|
|
154 |
|
@Embedded |
155 |
|
@AttributeOverrides({ |
156 |
|
@AttributeOverride(name="unitType", column=@Column(name="CLU_INTSTY_TYPE")), |
157 |
|
@AttributeOverride(name="unitQuantity", column=@Column(name="CLU_INTSTY_QTY") |
158 |
|
)}) |
159 |
|
private Amount intensity; |
160 |
|
|
161 |
|
@Embedded |
162 |
|
@Column(name = "STD_DUR") |
163 |
|
private TimeAmount stdDuration; |
164 |
|
|
165 |
|
@Column(name = "CAN_CREATE_LUI") |
166 |
|
private boolean canCreateLui; |
167 |
|
|
168 |
|
@Column(name = "REF_URL") |
169 |
|
private String referenceURL; |
170 |
|
|
171 |
|
@OneToMany(cascade = CascadeType.ALL, mappedBy="clu") |
172 |
|
private List<LuCode> luCodes; |
173 |
|
|
174 |
|
@Column(name = "NEXT_REVIEW_PRD") |
175 |
|
private String nextReviewPeriod; |
176 |
|
|
177 |
|
@Column(name = "IS_ENRL") |
178 |
|
private boolean enrollable; |
179 |
|
|
180 |
|
@OneToMany(cascade=CascadeType.ALL, mappedBy="clu") |
181 |
|
private List<CluAtpTypeKey> offeredAtpTypes; |
182 |
|
|
183 |
|
@Column(name = "HAS_EARLY_DROP_DEDLN") |
184 |
|
private boolean hasEarlyDropDeadline; |
185 |
|
|
186 |
|
@Column(name = "DEF_ENRL_EST") |
187 |
|
private int defaultEnrollmentEstimate; |
188 |
|
|
189 |
|
@Column(name = "DEF_MAX_ENRL") |
190 |
|
private int defaultMaximumEnrollment; |
191 |
|
|
192 |
|
@Column(name = "IS_HAZR_DISBLD_STU") |
193 |
|
private boolean hazardousForDisabledStudents; |
194 |
|
|
195 |
|
@OneToOne(cascade=CascadeType.ALL) |
196 |
|
@JoinColumn(name = "FEE_ID") |
197 |
|
private CluFee fee; |
198 |
|
|
199 |
|
@OneToOne(cascade=CascadeType.ALL) |
200 |
|
@JoinColumn(name = "ACCT_ID") |
201 |
|
private CluAccounting accounting; |
202 |
|
|
203 |
|
@OneToMany(cascade = CascadeType.ALL, mappedBy = "owner") |
204 |
|
private List<CluAttribute> attributes; |
205 |
|
|
206 |
|
@ManyToOne |
207 |
|
@JoinColumn(name = "LUTYPE_ID") |
208 |
|
private LuType luType; |
209 |
|
|
210 |
|
@Column(name = "ST") |
211 |
|
private String state; |
212 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
213 |
747
|
public LuType getLuType() {... |
214 |
747
|
return luType; |
215 |
|
} |
216 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
217 |
237
|
public void setLuType(LuType luType) {... |
218 |
237
|
this.luType = luType; |
219 |
|
} |
220 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
221 |
1264
|
@Override... |
222 |
|
public List<CluAttribute> getAttributes() { |
223 |
1264
|
return attributes; |
224 |
|
} |
225 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
226 |
426
|
@Override... |
227 |
|
public void setAttributes(List<CluAttribute> attributes) { |
228 |
426
|
this.attributes = attributes; |
229 |
|
} |
230 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
231 |
933
|
public CluIdentifier getOfficialIdentifier() {... |
232 |
933
|
return officialIdentifier; |
233 |
|
} |
234 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
235 |
57
|
public void setOfficialIdentifier(CluIdentifier officialIdentifier) {... |
236 |
57
|
this.officialIdentifier = officialIdentifier; |
237 |
|
} |
238 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
239 |
728
|
public List<CluIdentifier> getAlternateIdentifiers() {... |
240 |
728
|
return alternateIdentifiers; |
241 |
|
} |
242 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
243 |
189
|
public void setAlternateIdentifiers(List<CluIdentifier> alternateIdentifiers) {... |
244 |
189
|
this.alternateIdentifiers = alternateIdentifiers; |
245 |
|
} |
246 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
247 |
553
|
public String getStudySubjectArea() {... |
248 |
553
|
return studySubjectArea; |
249 |
|
} |
250 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
251 |
237
|
public void setStudySubjectArea(String studySubjectArea) {... |
252 |
237
|
this.studySubjectArea = studySubjectArea; |
253 |
|
} |
254 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
255 |
647
|
public LuRichText getDescr() {... |
256 |
647
|
return descr; |
257 |
|
} |
258 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
259 |
57
|
public void setDescr(LuRichText descr) {... |
260 |
57
|
this.descr = descr; |
261 |
|
} |
262 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
263 |
1057
|
public List<CluInstructor> getInstructors() {... |
264 |
1057
|
return instructors; |
265 |
|
} |
266 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
267 |
189
|
public void setInstructors(List<CluInstructor> instructors) {... |
268 |
189
|
this.instructors = instructors; |
269 |
|
} |
270 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
271 |
553
|
public Date getEffectiveDate() {... |
272 |
553
|
return effectiveDate; |
273 |
|
} |
274 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
275 |
237
|
public void setEffectiveDate(Date effectiveDate) {... |
276 |
237
|
this.effectiveDate = effectiveDate; |
277 |
|
} |
278 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
279 |
553
|
public Date getExpirationDate() {... |
280 |
553
|
return expirationDate; |
281 |
|
} |
282 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
283 |
237
|
public void setExpirationDate(Date expirationDate) {... |
284 |
237
|
this.expirationDate = expirationDate; |
285 |
|
} |
286 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
287 |
638
|
public TimeAmount getStdDuration() {... |
288 |
638
|
return stdDuration; |
289 |
|
} |
290 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
291 |
169
|
public void setStdDuration(TimeAmount stdDuration) {... |
292 |
169
|
this.stdDuration = stdDuration; |
293 |
|
} |
294 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
295 |
553
|
public boolean isCanCreateLui() {... |
296 |
553
|
return canCreateLui; |
297 |
|
} |
298 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
299 |
237
|
public void setCanCreateLui(boolean canCreateLui) {... |
300 |
237
|
this.canCreateLui = canCreateLui; |
301 |
|
} |
302 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
303 |
553
|
public String getReferenceURL() {... |
304 |
553
|
return referenceURL; |
305 |
|
} |
306 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
307 |
237
|
public void setReferenceURL(String referenceURL) {... |
308 |
237
|
this.referenceURL = referenceURL; |
309 |
|
} |
310 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
311 |
1163
|
public List<LuCode> getLuCodes() {... |
312 |
1163
|
return luCodes; |
313 |
|
} |
314 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
315 |
189
|
public void setLuCodes(List<LuCode> luCodes) {... |
316 |
189
|
this.luCodes = luCodes; |
317 |
|
} |
318 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
319 |
553
|
public String getNextReviewPeriod() {... |
320 |
553
|
return nextReviewPeriod; |
321 |
|
} |
322 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
323 |
237
|
public void setNextReviewPeriod(String nextReviewPeriod) {... |
324 |
237
|
this.nextReviewPeriod = nextReviewPeriod; |
325 |
|
} |
326 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
327 |
553
|
public boolean isEnrollable() {... |
328 |
553
|
return enrollable; |
329 |
|
} |
330 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
331 |
237
|
public void setEnrollable(boolean enrollable) {... |
332 |
237
|
this.enrollable = enrollable; |
333 |
|
} |
334 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
335 |
2155
|
public List<CluAtpTypeKey> getOfferedAtpTypes() {... |
336 |
2155
|
return offeredAtpTypes; |
337 |
|
} |
338 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
339 |
189
|
public void setOfferedAtpTypes(List<CluAtpTypeKey> offeredAtpTypes) {... |
340 |
189
|
this.offeredAtpTypes = offeredAtpTypes; |
341 |
|
} |
342 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
343 |
553
|
public boolean isHasEarlyDropDeadline() {... |
344 |
553
|
return hasEarlyDropDeadline; |
345 |
|
} |
346 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
347 |
237
|
public void setHasEarlyDropDeadline(boolean hasEarlyDropDeadline) {... |
348 |
237
|
this.hasEarlyDropDeadline = hasEarlyDropDeadline; |
349 |
|
} |
350 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
351 |
553
|
public int getDefaultEnrollmentEstimate() {... |
352 |
553
|
return defaultEnrollmentEstimate; |
353 |
|
} |
354 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
355 |
237
|
public void setDefaultEnrollmentEstimate(int defaultEnrollmentEstimate) {... |
356 |
237
|
this.defaultEnrollmentEstimate = defaultEnrollmentEstimate; |
357 |
|
} |
358 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
359 |
553
|
public int getDefaultMaximumEnrollment() {... |
360 |
553
|
return defaultMaximumEnrollment; |
361 |
|
} |
362 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
363 |
237
|
public void setDefaultMaximumEnrollment(int defaultMaximumEnrollment) {... |
364 |
237
|
this.defaultMaximumEnrollment = defaultMaximumEnrollment; |
365 |
|
} |
366 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
367 |
553
|
public boolean isHazardousForDisabledStudents() {... |
368 |
553
|
return hazardousForDisabledStudents; |
369 |
|
} |
370 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
371 |
237
|
public void setHazardousForDisabledStudents(... |
372 |
|
boolean hazardousForDisabledStudents) { |
373 |
237
|
this.hazardousForDisabledStudents = hazardousForDisabledStudents; |
374 |
|
} |
375 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
376 |
611
|
public CluFee getFee() {... |
377 |
611
|
return fee; |
378 |
|
} |
379 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
380 |
36
|
public void setFee(CluFee fee) {... |
381 |
36
|
this.fee = fee; |
382 |
|
} |
383 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
384 |
641
|
public CluAccounting getAccounting() {... |
385 |
641
|
return accounting; |
386 |
|
} |
387 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
388 |
26
|
public void setAccounting(CluAccounting accounting) {... |
389 |
26
|
this.accounting = accounting; |
390 |
|
} |
391 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
392 |
553
|
public String getState() {... |
393 |
553
|
return state; |
394 |
|
} |
395 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
396 |
237
|
public void setState(String state) {... |
397 |
237
|
this.state = state; |
398 |
|
} |
399 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
400 |
709
|
public CluInstructor getPrimaryInstructor() {... |
401 |
709
|
return primaryInstructor; |
402 |
|
} |
403 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
404 |
26
|
public void setPrimaryInstructor(CluInstructor primaryInstructor) {... |
405 |
26
|
this.primaryInstructor = primaryInstructor; |
406 |
|
} |
407 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
408 |
2763
|
public List<CluCampusLocation> getCampusLocations() {... |
409 |
2763
|
return campusLocations; |
410 |
|
} |
411 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
412 |
189
|
public void setCampusLocations(List<CluCampusLocation> campusLocationList) {... |
413 |
189
|
this.campusLocations = campusLocationList; |
414 |
|
} |
415 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
416 |
637
|
public Amount getIntensity() {... |
417 |
637
|
return intensity; |
418 |
|
} |
419 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
420 |
126
|
public void setIntensity(Amount intensity) {... |
421 |
126
|
this.intensity = intensity; |
422 |
|
} |
423 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
424 |
1593
|
public List<CluAccreditation> getAccreditations() {... |
425 |
1593
|
return accreditations; |
426 |
|
} |
427 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
428 |
189
|
public void setAccreditations(List<CluAccreditation> accreditations) {... |
429 |
189
|
this.accreditations = accreditations; |
430 |
|
} |
431 |
|
|
432 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
433 |
1439
|
public List<CluAdminOrg> getAdminOrgs() {... |
434 |
1439
|
return adminOrgs; |
435 |
|
} |
436 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
437 |
237
|
public void setAdminOrgs(List<CluAdminOrg> adminOrgs) {... |
438 |
237
|
this.adminOrgs = adminOrgs; |
439 |
|
} |
440 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
441 |
553
|
public String getExpectedFirstAtp() {... |
442 |
553
|
return expectedFirstAtp; |
443 |
|
} |
444 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
445 |
237
|
public void setExpectedFirstAtp(String expectedFirstAtp) {... |
446 |
237
|
this.expectedFirstAtp = expectedFirstAtp; |
447 |
|
} |
448 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
449 |
553
|
public String getLastAtp() {... |
450 |
553
|
return lastAtp; |
451 |
|
} |
452 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
453 |
237
|
public void setLastAtp(String lastAtp) {... |
454 |
237
|
this.lastAtp = lastAtp; |
455 |
|
} |
456 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
457 |
553
|
public String getLastAdmitAtp() {... |
458 |
553
|
return lastAdmitAtp; |
459 |
|
} |
460 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
461 |
237
|
public void setLastAdmitAtp(String lastAdmitAtp) {... |
462 |
237
|
this.lastAdmitAtp = lastAdmitAtp; |
463 |
|
} |
464 |
|
} |