ApiResponse<FlowNode> |
FlowNodeApi.getFlowNodeByIdWithHttpInfo(String id) |
Finds the FlowNode by ID
Similar to getFlowNodeById but it also returns the http response headers .
|
List<FlowNode> |
FlowNodeApi.searchFlowNodes(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds FlowNodes
Finds FlowNodes with pagination params and filters - can order on `name`, `displayName`, `state`, `processDefinitionId`, `parentProcessInstanceId`, `parentActivityInstanceId` (if the retrieved flow nodes are activities, order by parent activity id), `rootProcessInstanceId`, `lastUpdateDate` - can search on any field that can be used to order results - can filter on `name`, `state`, `processId`, `parentProcessInstanceId`, `rootProcessInstanceId`, `last_update_date`
|
List<FlowNode> |
FlowNodeApi.searchFlowNodes(Map<String,Object> queryParams) |
Finds FlowNodes
Finds FlowNodes with pagination params and filters - can order on `name`, `displayName`, `state`, `processDefinitionId`, `parentProcessInstanceId`, `parentActivityInstanceId` (if the retrieved flow nodes are activities, order by parent activity id), `rootProcessInstanceId`, `lastUpdateDate` - can search on any field that can be used to order results - can filter on `name`, `state`, `processId`, `parentProcessInstanceId`, `rootProcessInstanceId`, `last_update_date`
Note, this is equivalent to the other searchFlowNodes method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<FlowNode>> |
FlowNodeApi.searchFlowNodesWithHttpInfo(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds FlowNodes
Similar to searchFlowNodes but it also returns the http response headers .
|
ApiResponse<List<FlowNode>> |
FlowNodeApi.searchFlowNodesWithHttpInfo(Map<String,Object> queryParams) |
Finds FlowNodes
Finds FlowNodes with pagination params and filters - can order on `name`, `displayName`, `state`, `processDefinitionId`, `parentProcessInstanceId`, `parentActivityInstanceId` (if the retrieved flow nodes are activities, order by parent activity id), `rootProcessInstanceId`, `lastUpdateDate` - can search on any field that can be used to order results - can filter on `name`, `state`, `processId`, `parentProcessInstanceId`, `rootProcessInstanceId`, `last_update_date`
Note, this is equivalent to the other searchFlowNodes that receives the query parameters as a map,
but this one also exposes the Http response headers
|