src/com/amazonaws/lab/FHIRDataHandler.java [106:118]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
				log.debug("The document data "+docRef.getDescription());
				List<DocumentReferenceContentComponent> attList = docRef.getContent();
				StringBuffer buffer = new StringBuffer();
				for(DocumentReferenceContentComponent attach:attList) {
					byte[] notesBytes = attach.getAttachment().getData();
					log.debug("The provider clinical :"+new String(notesBytes));
					buffer.append(new String(notesBytes));
				}
				
				notesList.add(buffer.toString());
			}
		}
		return notesList;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/com/amazonaws/lab/FHIRDataHandler.java [125:135]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		log.debug("The document data "+docRef.getDescription());
		List<DocumentReferenceContentComponent> attList = docRef.getContent();
		StringBuffer buffer = new StringBuffer();
		for(DocumentReferenceContentComponent attach:attList) {
			byte[] notesBytes = attach.getAttachment().getData();
			log.debug("The provider clinical :"+new String(notesBytes));
			buffer.append(new String(notesBytes));
		}
		
		notesList.add(buffer.toString());
		return notesList;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



