Examples of LateInput


Examples of org.apache.ivory.entity.v0.process.LateInput

      LateProcess lateProcess = new LateProcess();
      lateProcess.setDelay(new Frequency(RuntimeProperties.get()
          .getProperty("feed.late.frequency", "hours(3)")));
      lateProcess.setPolicy(PolicyType.fromValue(RuntimeProperties.get()
          .getProperty("feed.late.policy", "exp-backoff")));
      LateInput lateInput = new LateInput();
      lateInput.setInput(entity.getName());
      //TODO - Assuming the late workflow is not used
      lateInput.setWorkflowPath("ignore.xml");
      lateProcess.getLateInputs().add(lateInput);
      return lateProcess;
    case PROCESS:
      Process process = (Process) entity;
      return process.getLateProcess();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.