Examples of addDlId()


Examples of it.eng.spagobi.tools.scheduler.to.SaveInfo.addDlId()

      if(name.equals("dlId")) {
       
        String[] dlIds = value.split(",");
        for (int j=0; j<dlIds.length; j++){
          String dlId = dlIds[j];         
          sInfo.addDlId(new Integer(dlId));
        }
       
        sInfo.setSendToDl(true);
      }
    }
View Full Code Here

Examples of it.eng.spagobi.tools.scheduler.to.SaveInfo.addDlId()

          while(it.hasNext()){
            DistributionList dl = (DistributionList)it.next();
            int dlId = dl.getId();
            String listID = (String)request.getAttribute("sendtodl_"+dlId+"_"+biobId+"__"+index);
            if(listID!=null){
              sInfo.addDlId(new Integer(listID));
            }
            else{
             
              DAOFactory.getDistributionListDAO().eraseDistributionListObjects(dl,biobId.intValue(),triggername);
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.