in app/src/main/java/org/apache/fineract/ui/online/identification/createidentification/FormIdentificationDetailsFragment.java [159:172]
public VerificationError verifyStep() {
if (!validateNumber() || !validateType() || !validateExpirationDate()
|| !validateIssuer()) {
return new VerificationError(null);
} else {
Identification identification = new Identification();
identification.setNumber(etNumber.getText().toString().trim());
identification.setType(etType.getText().toString().trim());
identification.setExpirationDate(expirationDate);
identification.setIssuer(etIssuer.getText().toString().trim());
onNavigationBarListener.setIdentificationDetails(identification);
}
return null;
}