Interface IProcessFactory

All Known Subinterfaces:
IProcessingManager
All Known Implementing Classes:
ProcessLoader

public interface IProcessFactory

Interface for factories used to lookup and instantiate specific process implementation for use in executable processing chains

Since:
May 16, 2017
  • Method Summary

    Modifier and Type
    Method
    Description
    Loads the executable process implementation corresponding to the given URI.
  • Method Details

    • loadProcess

      IProcessExec loadProcess(String uri) throws ProcessException
      Loads the executable process implementation corresponding to the given URI.
      Parameters:
      uri - URI of the method (i.e. the specific process to instantiate)
      Returns:
      the newly created process object
      Throws:
      ProcessException - if the process cannot be instantiated (e.g. unknown URI)