src/com/amazonaws/lab/HL7DataHandler.java [81:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
					: null);
			mdmMsg.getTXA().getActivityDateTime().getTimeOfAnEvent().getValueAsDate();
			ArrayList<String> notes = new ArrayList<>();

			List<OBX> obxList = mdmMsg.getOBXAll();
			for (OBX obx : obxList) {
				Varies[] dataList = obx.getObservationValue();
				// log.debug("The observation value :"+obx.getObservationValue() + "-- "+data);
				for (Varies data : dataList) {
					log.debug("The observation value :" + data.getData());
					notes.add(data.getData().toString());
				}
			}

			PatientInfo patInfo = new PatientInfo();
			patInfo.setLastName(patId.getPatientName()[0].getFamilyName().getValue());
			patInfo.setFirstName(patId.getPatientName()[0].getGivenName().getValue());
			patInfo.setMiddleInitial(patId.getPatientName()[0].getMiddleInitialOrName().getValue());
			patInfo.setDateOfBirth(patId.getDateOfBirth().getTs1_TimeOfAnEvent().getValue());
			patInfo.setActivityDateTime(activityDateTime);

			patInfo.setAddressCity(patId.getPatientAddress(0).getCity().getValue());
			patInfo.setGender(patId.getSex().getValue());
			patInfo.setMRN(patId.getPid3_PatientIDInternalID(0).getID().getValue());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/com/amazonaws/lab/HL7DataHandler.java [152:174]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
					: null);
			mdmMsg.getTXA().getActivityDateTime().getTimeOfAnEvent().getValueAsDate();
			ArrayList<String> notes = new ArrayList<>();

			List<OBX> obxList = mdmMsg.getOBXAll();
			for (OBX obx : obxList) {
				Varies[] dataList = obx.getObservationValue();
				// log.debug("The observation value :"+obx.getObservationValue() + "-- "+data);
				for (Varies data : dataList) {
					log.debug("The observation value :" + data.getData());
					notes.add(data.getData().toString());
				}
			}

			PatientInfo patInfo = new PatientInfo();
			patInfo.setLastName(patId.getPatientName()[0].getFamilyName().getValue());
			patInfo.setFirstName(patId.getPatientName()[0].getGivenName().getValue());
			patInfo.setMiddleInitial(patId.getPatientName()[0].getMiddleInitialOrName().getValue());
			patInfo.setDateOfBirth(patId.getDateOfBirth().getTs1_TimeOfAnEvent().getValue());
			patInfo.setActivityDateTime(activityDateTime);
			patInfo.setAddressCity(patId.getPatientAddress(0).getCity().getValue());
			patInfo.setGender(patId.getSex().getValue());
			patInfo.setMRN(patId.getPid3_PatientIDInternalID(0).getID().getValue());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



