if (features != null) {
// Compare the feature set with our template
boolean isOk = false;
for (FingerPrint f : allMyFingerprints) {
DPFPTemplate t = DPFPGlobal.getTemplateFactory().createTemplate();
t.deserialize(f.getBytesArray());
DPFPVerificationResult result = verificator.verify(features, t );
if (result.isVerified()){
try {
Employ e = ConnectionDrivers.getEmploy(f.getEmployId());
if ( e == null ){