@Override
 public FileInputStream downloadZip(JcUser jcUser) {
   FileInputStream in = null;
   try {
     in = new FileInputStream(jcUser.getZipPath());
   } catch (FileNotFoundException e) {
     LOG.error("File " + jcUser.getZipPath() + " is not found." + e);
   }
   return in;
 }