Configure Orchestration Workflow

Workflow definitions are specified within the application configuration file. Developers can specify the Workflow Table, Workflow Class, and configuration parameters specific to a Workflow.

Note, gx gen currently does not support the generation of Java classes and methods based on Workflow definitions.

// Orchestration Workflow Example

- table_name: booking_workflow
   table_type: workflow
   class_name: com.grainite.example.BookingWorkflow
   config:
      PaymentURI: "http://payment.servicename.com"
      AlertURI  : "http://alert.servicename.com"

Last updated