CdaRecord record = null;
if (cdaList != null && cdaList.containsKey(cdaID)) {
record = cdaList.get(cdaID);
} else {
// Need to round trip to query for requested cda
PatientIdentification pid = new PatientIdentification();
pid.setCdaID(cdaID);
Map<String, CdaRecord> resultList = executeQuery(pid);
record = resultList.get(cdaID);
if (record == null) {
// No match found, redirect to search w/ error