}
if (allRequestParams.containsKey("executionId")) {
query.executionId(allRequestParams.get("executionId"));
}
if (allRequestParams.containsKey("processDefinitionId")) {
query.processDefinitionId(allRequestParams.get("processDefinitionId"));
}
if (allRequestParams.containsKey("withRetriesLeft")) {
if (Boolean.valueOf(allRequestParams.get("withRetriesLeft"))) {
query.withRetriesLeft();
}