private void doProcessing() throws Exception {
final String conMethodName = conClassName + "::doProcessing"; //$NON-NLS-1$
SOSDataExchangeEngine objR = new SOSDataExchangeEngine();
SOSFTPOptions objO = objR.Options();
objO.CurrentNodeName(getCurrentNodeName());
HashMap<String, String> hsmParameters = getSchedulerParameterAsProperties(getParameters());
objO.setAllOptions(DeletePrefix(hsmParameters, "ftp_"));
objO.CheckMandatory();
int intLogLevel = spooler_log.level();
if (intLogLevel < 0) {
logger.debug(objO.toString());
}
logger.info(String.format("%1$s with operation %2$s started.", conMethodName, objO.operation.Value()));
objR.setJSJobUtilites(this);
objR.Execute();