Package com.structis.fichesst.shared.config

Examples of com.structis.fichesst.shared.config.ApplicationContext


  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;
  }
View Full Code Here

TOP

Related Classes of com.structis.fichesst.shared.config.ApplicationContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.