*/
public void setIdentificationType(String identificationType) {
this.identificationType = identificationType;
if (this.identificationType.equalsIgnoreCase("1")) {
PatientIdType idType = PatientIdType.ClinicalId;
this.identificationType = idType.name();
} else if (this.identificationType.equalsIgnoreCase("2")) {
PatientIdType idType = PatientIdType.HDSS;
this.identificationType = idType.name();
}
}