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);