applicationsNames = fileService.getFilesName(appliDirPath,
xmlFileExt);
} catch (FileException e) {
log.error(e);
}
Collection applications = new TreeSet(new ApplicationNameComparator());
Application a=null;
for (Iterator i = applicationsNames.iterator(); i.hasNext();) {
a=new Application((String) i.next());
applications.add(a);
}