Package com.sos.DataExchange

Examples of com.sos.DataExchange.SOSDataExchangeEngine


  }

  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();
    objR.Logout();
    logger.info(String.format("%1$s with operation %2$s ended.", conMethodName, objO.operation.Value()));
  } // doProcessing
View Full Code Here

TOP

Related Classes of com.sos.DataExchange.SOSDataExchangeEngine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.