Skip to content

Commit 2258abb

Browse files
committed
#13337 - Fixed unable to process lab messages
The problem was cause by missing annotation on the ExternalMessage class. Field CaseClassification was not annotated with String enum type. - Added correct annotation to the CaseClassification field in the ExternalMessage class.
1 parent 4227118 commit 2258abb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sormas-backend/src/main/java/de/symeda/sormas/backend/externalmessage/ExternalMessage.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,8 @@ public void setCaseClassification(CaseClassification caseClassification) {
224224
this.caseClassification = caseClassification;
225225
}
226226

227+
@Enumerated(EnumType.STRING)
228+
@Column
227229
public CaseClassification getCaseClassification() {
228230
return caseClassification;
229231
}

0 commit comments

Comments
 (0)