Uses of Class
org.bonitasoft.web.client.api.ProcessInstanceApi.SearchProcessInstancesQueryParams
-
Packages that use ProcessInstanceApi.SearchProcessInstancesQueryParams Package Description org.bonitasoft.web.client.api -
-
Uses of ProcessInstanceApi.SearchProcessInstancesQueryParams in org.bonitasoft.web.client.api
Methods in org.bonitasoft.web.client.api that return ProcessInstanceApi.SearchProcessInstancesQueryParams Modifier and Type Method Description ProcessInstanceApi.SearchProcessInstancesQueryParamsProcessInstanceApi.SearchProcessInstancesQueryParams. c(Integer value)ProcessInstanceApi.SearchProcessInstancesQueryParamsProcessInstanceApi.SearchProcessInstancesQueryParams. f(List<String> value)ProcessInstanceApi.SearchProcessInstancesQueryParamsProcessInstanceApi.SearchProcessInstancesQueryParams. o(String value)ProcessInstanceApi.SearchProcessInstancesQueryParamsProcessInstanceApi.SearchProcessInstancesQueryParams. p(Integer value)Methods in org.bonitasoft.web.client.api with parameters of type ProcessInstanceApi.SearchProcessInstancesQueryParams Modifier and Type Method Description List<ProcessInstance>ProcessInstanceApi. searchProcessInstances(ProcessInstanceApi.SearchProcessInstancesQueryParams queryParams)Finds ProcessInstances Finds ProcessInstances with pagination params and filters You can filter on: * `processDefinitionId`: The process derfinition ID * `name`: the process name * `started_by`: the ID of the user who started the process * `team_manager_id`: allow to retrieve the process instances in which all users with this manager ID ar involved) * `supervisor_id`: allow the retrived the process instances of all processes the user with this ID is supervisor of) beware you cannot use team_manager_id and supervisor_id at the same time Note, this is equivalent to the othersearchProcessInstancesmethod, but with the query parameters collected into a single Map parameter.ApiResponse<List<ProcessInstance>>ProcessInstanceApi. searchProcessInstancesWithHttpInfo(ProcessInstanceApi.SearchProcessInstancesQueryParams queryParams)Finds ProcessInstances Finds ProcessInstances with pagination params and filters You can filter on: * `processDefinitionId`: The process derfinition ID * `name`: the process name * `started_by`: the ID of the user who started the process * `team_manager_id`: allow to retrieve the process instances in which all users with this manager ID ar involved) * `supervisor_id`: allow the retrived the process instances of all processes the user with this ID is supervisor of) beware you cannot use team_manager_id and supervisor_id at the same time Note, this is equivalent to the othersearchProcessInstancesthat receives the query parameters as a map, but this one also exposes the Http response headers
-