// write something to the console after each 100 user, this can take a
// while with many users and it is handy to know that the system is
// doing something
if (i % 250 == 0) {
log.audit("Busy creating disclaimer confirmation. Done with " + i + " of a total of " + identities.size() + " users. Please wait ...");
db.intermediateCommit();
}
}
log.audit("Done with creating disclaimer confirmation for " + identities.size() + " users");
uhd.setBooleanDataValue(TASK_CREATE_DISCLAIMER_CONFIRMATION, true);