forked from ls1intum/Artemis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartemis.jh
554 lines (465 loc) · 13.2 KB
/
artemis.jh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
entity Statistic (quizStatistic) { //abstract
participantsRated Integer,
participantsUnrated Integer
}
entity QuizPointStatistic (quizPointStatistic) { //extends Statistic
}
entity QuizQuestionStatistic (quizQuestionStatistic) { //extends Statistic, abstract
ratedCorrectCounter Integer,
unRatedCorrectCounter Integer,
}
entity MultipleChoiceQuestionStatistic (mcQuestionStatistic) { //extends QuizQuestionStatistic
}
entity DragAndDropQuestionStatistic (dndQuestionStatistic) { //extends QuizQuestionStatistic
}
entity ShortAnswerQuestionStatistic (saQuestionStatistic) { //extends QuizQuestionStatistic
}
entity StatisticCounter(quizStatisticCounter) { //abstract
ratedCounter Integer,
UnRatedCounter Integer
}
entity PointCounter(pointCounter) { //extends PointCounter
points Double
}
entity AnswerCounter(answerCounter) { //extends StatisticCounter
}
entity DropLocationCounter(dropLocationCounter) { //extends StatisticCounter
}
entity ShortAnswerSpotCounter(shortAnswerSpotCounter) { //extends StatisticCounter
}
entity Course (course) {
title String,
description String, //LONGTEXT --> lob
shortName String,
studentGroupName String,
teachingAssistantGroupName String,
instructorGroupName String,
startDate ZonedDateTime,
endDate ZonedDateTime,
onlineCourse Boolean,
maxComplaints Integer,
defaultProgrammingLanguage String,
color String,
courseIcon String,
registrationEnabled Boolean
}
entity Exercise (exercise) { //abstract
problemStatement String, //LONGTEXT --> lob
gradingInstructions String, //LONGTEXT --> lob
title String,
shortName String,
releaseDate ZonedDateTime,
dueDate ZonedDateTime,
assessmentDueDate ZonedDateTime,
maxScore Double,
assessmentType AssessmentType,
difficulty DifficultyLevel,
mode ExerciseMode,
categories String //List<String>, similar to User --> groups
}
enum DifficultyLevel {
EASY,
MEDIUM,
HARD
}
enum ExerciseMode {
INDIVIDUAL,
TEAM
}
entity TextExercise { //extends Exercise
sampleSolution String //LONGTEXT --> lob
}
entity FileUploadExercise { //extends Exercise
filePattern String
}
entity ProgrammingExercise { //extends Exercise
testRepositoryUrl String,
publishBuildPlanUrl Boolean,
allowOnlineEditor Boolean,
programmingLanguage ProgrammingLanguage,
packageName String
}
enum ProgrammingLanguage {
JAVA,
PYTHON,
C,
HASKELL,
KOTLIN,
VHDL,
ASSEMBLER,
SWIFT,
OCAML
}
entity ModelingExercise { //extends Exercise
diagramType DiagramType,
sampleSolutionModel String, //LONGTEXT --> lob
sampleSolutionExplanation String //LONGTEXT --> lob
}
enum DiagramType {
CLASS,
ACTIVITY,
USE_CASE,
COMMUNICATION
}
entity QuizExercise { //extends Exercise
description String,
explanation String,
randomizeQuestionOrder Boolean,
allowedNumberOfAttempts Integer,
isVisibleBeforeStart Boolean,
isOpenForPractice Boolean,
isPlannedToStart Boolean,
duration Integer
}
entity LtiOutcomeUrl (lti_outcome_url) {
url String,
sourcedId String
}
entity SubmittedAnswer { //abstract
scoreInPoints Double
}
entity QuizQuestion { //abstract
title String,
text String,
hint String,
explanation String,
score Integer,
scoringType ScoringType,
randomizeOrder Boolean,
invalid Boolean
}
enum ScoringType {
ALL_OR_NOTHING,
PROPORTIONAL_WITH_PENALTY,
PROPORTIONAL_WITHOUT_PENALTY
}
entity MultipleChoiceQuestion { //extends QuizQuestion
}
entity AnswerOption {
text String,
hint String,
explanation String,
isCorrect Boolean,
invalid Boolean
}
entity MultipleChoiceSubmittedAnswer (mcSubmittedAnswer) { //extends SubmittedAnswer
}
entity DragAndDropQuestion { //extends QuizQuestion
backgroundFilePath String
}
entity DropLocation {
posX Integer
posY Integer
width Integer
height Integer
invalid Boolean
}
entity DragItem {
pictureFilePath String
text String
invalid Boolean
}
entity ShortAnswerQuestion { //extends QuizQuestion
}
entity ShortAnswerSpot {
width Integer,
spotNr Integer,
invalid Boolean,
}
entity ShortAnswerSolution {
text String
invalid Boolean
}
entity Team {
name String
image String
}
entity TeamAssignmentConfig {
minTeamSize Integer
maxTeamSize Integer
}
entity Participation (participation) {
repositoryUrl String,
buildPlanId String,
initializationState InitializationState,
initializationDate ZonedDateTime,
presentationScore Integer
}
entity LtiUserId (lti_user_id) {
ltiUserId String
}
entity ExerciseResult (result) {
completionDate ZonedDateTime,
successful Boolean,
buildArtifact Boolean,
score Long,
rated Boolean,
hasFeedback Boolean,
assessmentType AssessmentType,
hasComplaint Boolean,
exampleResult Boolean
}
enum AssessmentType {
AUTOMATIC,
SEMI_AUTOMATIC,
MANUAL
}
entity Feedback(feedback) {
text String,
detailText String,
reference String,
credits Double,
positive Boolean,
type FeedbackType
}
enum FeedbackType {
AUTOMATIC,
MANUAL
}
enum InitializationState {
UNINITIALIZED,
REPO_COPIED,
REPO_CONFIGURED,
BUILD_PLAN_COPIED,
BUILD_PLAN_CONFIGURED,
INITIALIZED
}
enum SubmissionType {
MANUAL,
TIMEOUT,
TEST,
OTHER
}
entity Submission { //abstract
submitted Boolean
submissionDate ZonedDateTime,
type SubmissionType,
exampleSubmission Boolean
}
entity ModelingSubmission { //extends Submission
model String, //LONGTEXT --> lob
explanationText String //LONGTEXT --> lob
}
entity QuizSubmission { //extends Submission
scoreInPoints Double
}
entity ProgrammingSubmission { //extends Submission
commitHash String
}
entity TextSubmission { //extends Submission
text String //LONGTEXT --> lob
}
entity TextBlock {
id String
text String
startIndex Integer
endIndex Integer
}
entity TextCluster {
probabilities Blob
distanceMatrix Blob
}
entity FileUploadSubmission { //extends Submission
filePath String
}
entity ExampleSubmission {
usedForTutorial Boolean
}
entity DragAndDropSubmittedAnswer (dndSubmittedAnswer) { //extends SubmittedAnswer
}
entity DragAndDropMapping {
dragItemIndex Integer
dropLocationIndex Integer
invalid Boolean
}
entity ShortAnswerSubmittedAnswer (saSubmittedAnswer) { //extends SubmittedAnswer
}
entity ShortAnswerSubmittedText (shortAnswerSubmittedText) {
text String,
isCorrect Boolean
}
entity ShortAnswerMapping {
shortAnswerSpotIndex Integer
shortAnswerSolutionIndex Integer
invalid Boolean
}
entity ApollonDiagram {
title String
jsonRepresentation String // LONGTEXT --> lob
}
entity Complaint {
complaintText String,
accepted Boolean,
submittedTime ZonedDateTime,
resultBeforeComplaint String // LONGTEXT --> lob
}
entity ComplaintResponse {
responseText String
submittedTime ZonedDateTime
}
entity TutorParticipation {
status TutorParticipationStatus,
points Integer
}
enum TutorParticipationStatus {
NOT_PARTICIPATED,
REVIEWED_INSTRUCTIONS,
TRAINED,
COMPLETED
}
entity TutorGroup {
name String,
capacity Integer,
weekday Weekday,
timeSlot String,
language Language,
room String
}
enum Weekday {
MONDAY,
TUESDAY,
WEDNESDAY,
THURSDAY,
FRIDAY
}
enum Language {
ENGLISH,
GERMAN
}
entity Notification {
title String,
text String, // LONGTEXT --> lob
notificationDate ZonedDateTime,
target String
}
entity SystemNotification { // extends Notification
expireDate ZonedDateTime,
type SystemNotificationType,
}
entity GroupNotification { // extends Notification
type GroupNotificationType
}
entity SingleUserNotification { // extends Notification
}
enum GroupNotificationType {
INSTRUCTOR,
TA,
STUDENT
}
enum SystemNotificationType {
WARNING,
INFO
}
entity Lecture {
title String,
description String, // LONGTEXT --> lob
startDate ZonedDateTime,
endDate ZonedDateTime
}
entity Attachment {
name String,
link String,
version Integer,
uploadDate ZonedDateTime,
releaseDate ZonedDateTime,
attachmentType AttachmentType
}
enum AttachmentType {
FILE,
URL
}
entity ModelAssessmentConflict {
state EscalationState,
creationDate ZonedDateTime,
resolutionDate ZonedDateTime
}
entity ConflictingResult {
modelElementId String
}
enum EscalationState {
UNHANDLED,
ESCALATED_TO_TUTORS_IN_CONFLICT,
ESCALATED_TO_INSTRUCTOR,
RESOLVED_BY_CAUSER,
RESOLVED_BY_OTHER_TUTORS,
RESOLVED_BY_INSTRUCTOR
}
relationship OneToMany {
QuizPointStatistic{PointCounters} to PointCounter{quizPointStatistic},
MultipleChoiceQuestionStatistic{AnswerCounters} to AnswerCounter{MultipleChoiceQuestionStatistic},
DragAndDropQuestionStatistic{DropLocationCounters} to DropLocationCounter{DragAndDropQuestionStatistic},
ShortAnswerQuestionStatistic{ShortAnswerSpotCounters} to ShortAnswerSpotCounter{ShortAnswerQuestionStatistic},
Course{exercises} to Exercise{course},
Course{lectures} to Lecture{course},
Course{tutorGroups} to TutorGroup{course},
Exercise{participations} to Participation{exercise},
Exercise{tutorParticipations} to TutorParticipation{assessedExercise},
Participation{results} to ExerciseResult{participation},
Participation{submissions} to Submission{participation},
ExerciseResult{feedbacks} to Feedback{result},
QuizExercise{quizQuestions} to QuizQuestion{exercise},
MultipleChoiceQuestion{answerOptions} to AnswerOption{quizQuestion},
DragAndDropQuestion{dropLocations} to DropLocation{quizQuestion},
DragAndDropQuestion{dragItems} to DragItem{quizQuestion},
ShortAnswerQuestion{spots} to ShortAnswerSpot{quizQuestion},
ShortAnswerQuestion{solutions} to ShortAnswerSolution{quizQuestion},
QuizSubmission{submittedAnswers} to SubmittedAnswer{submission},
DragAndDropSubmittedAnswer{mappings} to DragAndDropMapping{submittedAnswer},
DragAndDropQuestion{correctMappings} to DragAndDropMapping{quizQuestion},
ShortAnswerQuestion{correctMappings} to ShortAnswerMapping{quizQuestion}
ShortAnswerSubmittedAnswer{submittedTexts} to ShortAnswerSubmittedText{submittedAnswer},
Exercise{exampleSubmissions} to ExampleSubmission{exercise}
Lecture{attachments} to Attachment{lecture},
Exercise{attachments} to Attachment{exercise},
ModelAssessmentConflict{resultsInConflict} to ConflictingResult{conflict},
TextSubmission{blocks} to TextBlock{submission},
TextCluster{blocks} to TextBlock{cluster},
TextExercise{clusters} to TextCluster{exercise}
}
relationship OneToOne {
QuizExercise{quizPointStatistic} to QuizPointStatistic{quiz},
QuizQuestion{quizQuestionStatistic} to QuizQuestionStatistic{quizQuestion},
AnswerCounter{answer} to AnswerOption,
DropLocationCounter{dropLocation} to DropLocation,
ShortAnswerSpotCounter{spot} to ShortAnswerSpot,
ShortAnswerSubmittedText{spot} to ShortAnswerSpot,
Submission{result} to ExerciseResult{submission},
LtiUserId{user} to User,
ExerciseResult{assessor} to User,
Complaint{result} to ExerciseResult,
ComplaintResponse{complaint} to Complaint,
ExampleSubmission{submission} to Submission,
ProgrammingExercise{templateParticipation} to Participation,
ProgrammingExercise{solutionParticipation} to Participation,
ModelAssessmentConflict{causingConflictingResult} to ConflictingResult,
ModelAssessmentConflict{updatedFeedback} to Feedback,
Exercise{teamAssignmentConfig} to TeamAssignmentConfig{exercise},
}
relationship ManyToOne {
TutorGroup{tutor} to User,
Team{exercise} to Exercise,
Participation{student} to User,
Participation{team} to Team,
LtiOutcomeUrl{user} to User,
LtiOutcomeUrl{exercise} to Exercise,
SubmittedAnswer{quizQuestion} to QuizQuestion
DragAndDropMapping{dragItem} to DragItem,
DragAndDropMapping{dropLocation} to DropLocation,
ShortAnswerMapping{solution} to ShortAnswerSolution,
ShortAnswerMapping{spot} to ShortAnswerSpot,
TutorParticipation{tutor} to User,
Notification{author} to User,
SingleUserNotification{recipient} to User,
GroupNotification{course} to Course,
Complaint{student} to User,
ComplaintResponse{reviewer} to User,
ModelAssessmentConflict{result} to ExerciseResult,
}
relationship ManyToMany {
Team{students} to User, //Note: there should be a constraint that per exercise/course (depending on team scope) a student can only be in one team at the same time
TutorGroup{students} to User, //Note: there should be a constraint that per course a student can only be in one tutor group at the same time
MultipleChoiceSubmittedAnswer{selectedOptions} to AnswerOption,
TutorParticipation{trainedExampleSubmissions} to ExampleSubmission{tutorParticipations},
}
service Course with serviceClass
service Participation with serviceClass