*/
private void purgeCoordActions(List<String> coordActions) throws JPAExecutorException {
coordActionDel = coordActions.size();
for (int startIndex = 0; startIndex < coordActions.size(); ) {
int endIndex = (startIndex + limit < coordActions.size()) ? (startIndex + limit) : coordActions.size();
jpaService.execute(new CoordActionsDeleteJPAExecutor(coordActions.subList(startIndex, endIndex)));
startIndex = endIndex;
}
}