Package ar.com.AmberSoft.iEvenTask.services

Examples of ar.com.AmberSoft.iEvenTask.services.ListProfileService.execute()


 
  public void load()  throws Exception {
    profiles = new HashMap<String, Profile>();
    ListProfileService service = new ListProfileService();
    Map params = new HashMap();
    Map result = service.execute(params) ;
    Collection datas = (Collection) result.get(ParamsConst.DATA);
    Iterator itData = datas.iterator();
    while (itData.hasNext()) {
      Profile actual = (Profile) itData.next();
      profiles.put(actual.getGroupLDAP().trim(), actual);
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.