Package domain

Examples of domain.Advancement


      MailSenDer mdInterview = new MailSenDer(path+"mail.properties");
      boolean send = true;
     
      for (Iterator iterAdvancements = advancementsInterviews.iterator(); iterAdvancements
          .hasNext();) {
        Advancement advancement = (Advancement) iterAdvancements.next();
        Formation f = (Formation)advancement.getAdvancement().keySet().iterator().next();
        Etat interview = advancement.getAdvancement().get(f);
        boolean convoq = mdInterview.sendInterviewMail(advancement, p, interview);
        send = send && convoq;
        if(!convoq){
          message += advancement.getPi().getEmail()+" ";
        }
      }
      
     
      if(send){
View Full Code Here


       
        /* The action of a secretary which refuses a candidat from a principal list
         * and accepts the first on a complementary list */
      } else if(action.equals("desiste")){
        id = new Integer(sId);
        Advancement desiste = foldermanager.findAdvancementByPersonalInfoIdAndState(id,Folder.FOLDER_ACCEPTED);
        if(desiste!=null){
          page.add("Veuillez choisir la formation pour le d�sistement");
          message = "Vous pouvez d�sister le candidat de plusieurs formations. Attention, le candidat sera refus� pour les formations choisies.";
          model.put("page", page);
          model.put("message", message);
         
          List formations = new ArrayList();
          for (Iterator iterFormations = desiste.getAdvancement().keySet().iterator(); iterFormations.hasNext();) {
            Formation formation = (Formation) iterFormations.next();
            formations.add(formation);
          }
         
          model.put("formationsdesistement", formations);
View Full Code Here

TOP

Related Classes of domain.Advancement

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.