ClientUtilsateurGrpService serviceUser;
@Autowired
ClientRoleService serviceRole;
@Override
public ApplicationContext loadappli() {
ApplicationContext context=new ApplicationContext();
List<ChantierModel> chantierModels=serviceChantier.findAll();
Map<String,ChantierModel> mapChantier=new HashMap<String, ChantierModel>();
for (ChantierModel chantierModel : chantierModels) {
mapChantier.put(chantierModel.getNom(), chantierModel);
}
context.setMapChantier((HashMap<String,ChantierModel>) mapChantier);
return context;
}