/** * Verify the user with the employee data * * @param employeeData employee data */ public void verifyUser(JSONObject employeeData) { try { employeeIdToCompare = employeeData.getString(Values.API.Keys.EMPLOYEE_ID_KEY); simpleNumberInputViewDialog.show(); } catch (Exception e) { e.printStackTrace(System.out); } }
/** Enroll user */ public void enrollUser() { simpleNumberInputViewDialog.show(); }
/** * Verify the user with the employee id * * @param employeeId company employee ID */ public void verifyUser(String employeeId) { employeeIdToCompare = employeeId; simpleNumberInputViewDialog.show(); }
/** Begin the identification */ public void identifyUser() { simpleNumberInputViewDialog.show(); }