public Iterable<Path> loadFilesByType(String path, String fileType) {
   try {
     return fs.loadFilesByType(path, fileType);
   } catch (FileException ex) {
     Logger.getLogger(KnowledgeDomainServiceEntryPointImpl.class.getName())
         .log(Level.SEVERE, null, ex);
   }
   return null;
 }