Skip to content

Commit

Permalink
[PRMT-4727] Added FailureReason enumeration.
Browse files Browse the repository at this point in the history
Signed-off-by: martin-nhs <[email protected]>
  • Loading branch information
martin-nhs committed Apr 8, 2024
1 parent 55b94ff commit 050496f
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package uk.nhs.prm.repo.ehrtransferservice.database.enumeration;

public enum FailureReason {
NEGATIVE_ACKNOWLEDGEMENT_RECEIVED("INBOUND:negative_acknowledgement_received");

public final String reason;

FailureReason(String reason) {
this.reason = reason;
}
}

0 comments on commit 050496f

Please sign in to comment.