ApiResponse<ArchivedFlowNode> |
ArchivedFlowNodeApi.getArchivedFlowNodeByIdWithHttpInfo(String id) |
Finds the ArchivedFlowNode by ID
Similar to getArchivedFlowNodeById but it also returns the http response headers .
|
List<ArchivedFlowNode> |
ArchivedFlowNodeApi.searchArchivedFlowNodes(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds ArchivedFlowNodes
Finds ArchivedFlowNodes with pagination params and filters - can order on `name`, `displayName`, `state`, `type`, `isTerminal`, `processId`, `caseId`, `archivedDate` - can search on any field that can be used to order results - can filter on `name`, `displayName`, `state`, `stateId`, `kind`, `terminal`, `processDefinitionId`, `parentProcessInstanceId`, `rootProcessInstanceId`, `parentActivityInstanceId`, `archivedDate`, `reachedStateDate`, `sourceObjectId`
|
List<ArchivedFlowNode> |
ArchivedFlowNodeApi.searchArchivedFlowNodes(Map<String,Object> queryParams) |
Finds ArchivedFlowNodes
Finds ArchivedFlowNodes with pagination params and filters - can order on `name`, `displayName`, `state`, `type`, `isTerminal`, `processId`, `caseId`, `archivedDate` - can search on any field that can be used to order results - can filter on `name`, `displayName`, `state`, `stateId`, `kind`, `terminal`, `processDefinitionId`, `parentProcessInstanceId`, `rootProcessInstanceId`, `parentActivityInstanceId`, `archivedDate`, `reachedStateDate`, `sourceObjectId`
Note, this is equivalent to the other searchArchivedFlowNodes method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<ArchivedFlowNode>> |
ArchivedFlowNodeApi.searchArchivedFlowNodesWithHttpInfo(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds ArchivedFlowNodes
Similar to searchArchivedFlowNodes but it also returns the http response headers .
|
ApiResponse<List<ArchivedFlowNode>> |
ArchivedFlowNodeApi.searchArchivedFlowNodesWithHttpInfo(Map<String,Object> queryParams) |
Finds ArchivedFlowNodes
Finds ArchivedFlowNodes with pagination params and filters - can order on `name`, `displayName`, `state`, `type`, `isTerminal`, `processId`, `caseId`, `archivedDate` - can search on any field that can be used to order results - can filter on `name`, `displayName`, `state`, `stateId`, `kind`, `terminal`, `processDefinitionId`, `parentProcessInstanceId`, `rootProcessInstanceId`, `parentActivityInstanceId`, `archivedDate`, `reachedStateDate`, `sourceObjectId`
Note, this is equivalent to the other searchArchivedFlowNodes that receives the query parameters as a map,
but this one also exposes the Http response headers
|