Skip to content

Commit

Permalink
dcm4che/dcm4chee-arc-light#4546 : Extend set of DICOM response status…
Browse files Browse the repository at this point in the history
… error codes for Audit Messages
  • Loading branch information
vrindanayak committed Aug 20, 2024
1 parent f70ac6d commit b02e9a8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions dcm4che-audit/src/main/java/org/dcm4che3/audit/AuditMessages.java
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,10 @@ public static final class EventTypeCode
new EventTypeCode("0212", "99DCM4CHEE", "Mistyped Argument");
public static final EventTypeCode A700 =
new EventTypeCode("A700", "99DCM4CHEE", "Out Of Resources");
public static final EventTypeCode A900 =
new EventTypeCode("A900", "99DCM4CHEE", "Identifier Does Not Match SOP Class");
public static final EventTypeCode A701 =
new EventTypeCode("A701", "99DCM4CHEE", "Refused: Out Of Resources - Unable to calculate number of matches");
public static final EventTypeCode A702 =
new EventTypeCode("A702", "99DCM4CHEE", "Refused: Out Of Resources - Unable to perform sub-operations");
public static final EventTypeCode A770 =
new EventTypeCode("A770", "99DCM4CHEE", "Duplicate Rejection Note");
public static final EventTypeCode A771 =
Expand All @@ -309,6 +311,12 @@ public static final class EventTypeCode
new EventTypeCode("A778", "99DCM4CHEE", "Conflicting Patient ID not accepted");
public static final EventTypeCode A779 =
new EventTypeCode("A779", "99DCM4CHEE", "Conflicting Patient Attributes rejected");
public static final EventTypeCode A801 =
new EventTypeCode("A801", "99DCM4CHEE", "Refused: Move Destination unknown");
public static final EventTypeCode A900 =
new EventTypeCode("A900", "99DCM4CHEE", "Identifier does not match SOP Class");
public static final EventTypeCode B000 =
new EventTypeCode("B000", "99DCM4CHEE", "Sub-operations Complete - One or more Failures");
public static final EventTypeCode C409 =
new EventTypeCode("C409", "99DCM4CHEE", "Different Study Instance UID");

Expand Down

0 comments on commit b02e9a8

Please sign in to comment.