if (persistence != null) {
List<CautionFournie> cautionFournieList = persistence.getCautionFournies();
if (cautionFournieList != null) {
for (Iterator<CautionFournie> iterator = cautionFournieList.iterator(); iterator.hasNext();) {
CautionFournie cautionFournie = (CautionFournie) iterator.next();
cautionFournie.setFicheSt(null);
iterator.remove();
}
}
List<Gestion> gestionList = persistence.getGestions();