private List<Fingerprint> getMPIFingerprintList() {
PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
List<Fingerprint> fingerprintList = new ArrayList<Fingerprint>();
if (mpiMatchPersonWrapper != null
&& mpiMatchPersonWrapper.unwrap().getFingerprintList() != null
&& !mpiMatchPersonWrapper.unwrap().getFingerprintList().isEmpty()) {
fingerprintList = mpiMatchPersonWrapper.unwrap().getFingerprintList();
for (Fingerprint fingerprint : fingerprintList) {
fingerprint.setDateChanged(new Date());
}