Interface ProcessBuilderFactory


  • public interface ProcessBuilderFactory
    Factory to create process builder instance.
    It is also a convenient place holder for additional utility methods
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      ProcessBuilder processBuilder​(java.lang.String processId)
      Returns a ProcessBuilder that can be used to create a process definition
      byte[] toBytes​(Process builder)
      Converts process definition into an array of bytes.
      Typically this array will be converted to a Resource for a KIE base
    • Method Detail

      • processBuilder

        ProcessBuilder processBuilder​(java.lang.String processId)
        Returns a ProcessBuilder that can be used to create a process definition
        Parameters:
        processId - the unique id of the process being defined
        Returns:
        builder instance to create process definition
      • toBytes

        byte[] toBytes​(Process builder)
        Converts process definition into an array of bytes.
        Typically this array will be converted to a Resource for a KIE base
        Parameters:
        builder - process definition to be converted to byte[]
        Returns:
        byte[] containing process definition