* @throws FinderException
*/
public static Collection findAllProcessNames() throws DBSessionException, FinderException {
Collection processes = ProcessDAO.findAll(ProcessImpl.class);
if(processes.size()==0) {
throw new FinderException("No process in DB");
}
Collection res = new HashSet();
for (Iterator it = processes.iterator(); it.hasNext();) {
ProcessImpl process = (ProcessImpl) it.next();
res.add(process.getNamespace()+process.getName());