Package nexj.core.meta.integration.service

Examples of nexj.core.meta.integration.service.Sync


               persist.setOnError(getOnError(element));
               step = persist;
            }
            else if (sElement.equals("Sync"))
            {
               Sync sync = new Sync(sStepName);
               sync.setSyncLink(m_helper.parse(XMLUtil.getReqStringAttr(element, "link"), false, activity.getFlow().getPosMap(), null, m_metadata.getGlobalEnvironment()));
               sync.setSyncScript((Pair)m_helper.parse(m_helper.getElementValue(element), true, activity.getFlow().getPosMap(), null, m_metadata.getGlobalEnvironment()));
               sync.setOnError(getOnError(element));
               step = sync;
            }
            else if (sElement.equals("Send"))
            {
               Send send = new Send(sStepName);
View Full Code Here


      }
      else if (step instanceof Sync)
      {
         openStepElement(step, "Sync");

         Sync sync = (Sync)step;

         exportSExpression(sync.getSyncLink(), false, false, null, "link");
         exportOnErrorAttribute(sync.getOnError());

         m_writer.closeElement();

         exportSExpression(sync.getSyncScript(), true, true, null, null);

         m_writer.endElement("Sync");
      }
      else if (step instanceof Persist)
      {
View Full Code Here

TOP

Related Classes of nexj.core.meta.integration.service.Sync

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.