// call Ftplet.onDownloadStart() method
Ftplet ftpletContainer = context.getFtpletContainer();
FtpletEnum ftpletRet;
try {
ftpletRet = ftpletContainer.onDownloadStart(session.getFtpletSession(), request);
} catch(Exception e) {
LOG.debug("Ftplet container threw exception", e);
ftpletRet = FtpletEnum.RET_DISCONNECT;
}
if(ftpletRet == FtpletEnum.RET_SKIP) {