WorkflowResponseDto Data Type

The Class WorkflowResponseDto.

Available Since
Jun 3, 2016 6:08:59 AM
Implemented Interfaces
Serializable
Properties
name data type description
workflow WorkflowDto The workflow.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "workflow" : {
    "disabled" : true,
    "wfType" : "...",
    "id" : 12345,
    "auditableField" : [ {
      "entityClass" : "...",
      "fieldName" : "...",
      "id" : 12345,
      "changeOrigin" : "...",
      "auditableField" : [ { }, { } ],
      "originName" : "...",
      "code" : "...",
      "previousState" : "...",
      "currentState" : "...",
      "description" : "...",
      "created" : "...",
      "updatedCode" : "...",
      "actor" : "..."
    }, {
      "entityClass" : "...",
      "fieldName" : "...",
      "id" : 12345,
      "changeOrigin" : "...",
      "auditableField" : [ { }, { } ],
      "originName" : "...",
      "code" : "...",
      "previousState" : "...",
      "currentState" : "...",
      "description" : "...",
      "created" : "...",
      "updatedCode" : "...",
      "actor" : "..."
    } ],
    "enableHistory" : true,
    "transition" : [ {
      "uuid" : "...",
      "fromStatus" : "...",
      "toStatus" : "...",
      "conditionEl" : "...",
      "priority" : 12345,
      "description" : "...",
      "action" : [ { }, { } ],
      "decisionRule" : [ { }, { } ]
    }, {
      "uuid" : "...",
      "fromStatus" : "...",
      "toStatus" : "...",
      "conditionEl" : "...",
      "priority" : 12345,
      "description" : "...",
      "action" : [ { }, { } ],
      "decisionRule" : [ { }, { } ]
    } ],
    "code" : "...",
    "description" : "...",
    "updatedCode" : "..."
  },
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}