Skip to content

Commit

Permalink
Adding RA Patient Identifier (#680)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daphne210 authored Nov 26, 2024
1 parent e990583 commit 8f7b6ea
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public void install() throws Exception {
install(PatientIdentifierTypes.PATIENT_ORGANIZATION_ID);
install(PatientIdentifierTypes.PATIENT_OPD_IDENTIFICATION_NUMBER);
install(PatientIdentifierTypes.DISTRICT_REG_TB_NUMBER);
install(PatientIdentifierTypes.RA_NUMBER);
install(PatientIdentifierTypes.NHPI);
install(PatientIdentifierTypes.PASSPORT);
log.info("Patient IdentifierTypes installed");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,4 +399,21 @@ public String uuid() {
}
};

public static PatientIdentifierTypeDescriptor RA_NUMBER = new PatientIdentifierTypeDescriptor() {

@Override
public String name() {
return "RA/O Identifier";
}

@Override
public String description() {
return "This Identifier uniquely identifies a UPDF Soldier";
}

public String uuid() {
return "fd0e44b3-e365-47c9-a2a6-e8170e440e30";
}
};

}

0 comments on commit 8f7b6ea

Please sign in to comment.