Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. IssueManager issueManager = this.redmineManager.getIssueManager();
  2.  
  3. Params params = new Params()
  4. .add("set_filter", "1")
  5. .add("f[]", "status_id")
  6. .add("v[status_id][]", "5")
  7. .add("v[status_id][]", "10")
  8. .add("v[status_id][]", "8")
  9. .add("f[]", "closed_on")
  10. .add("op[closed_on]", "><")
  11. .add("v[closed_on][]", "2019-03-01")
  12. .add("v[closed_on][]", "2019-03-05")
  13. .add("f[]", "tracker_id")
  14. .add("v[tracker_id][]", "1")
  15. .add("project_id", "962");
  16.  
  17. ResultsWrapper<Issue> issues = issueManager.getIssues(params);
  18.  
  19. IssueManager issueManager = this.redmineManager.getIssueManager();
  20.  
  21. Params params = new Params()
  22. .add("set_filter", "1")
  23. .add("f[]", "status_id")
  24. .add("v[status_id][]", "5")
  25. .add("v[status_id][]", "10")
  26. .add("v[status_id][]", "8")
  27. .add("f[]", "tracker_id")
  28. .add("v[tracker_id][]", "1")
  29. .add("project_id", "962");
  30.  
  31. ResultsWrapper<Issue> issues = issueManager.getIssues(params);
  32.  
  33. IssueManager issueManager = this.redmineManager.getIssueManager();
  34.  
  35. Params params = new Params()
  36. .add("set_filter", "1")
  37. .add("f[]", "closed_on")
  38. .add("op[closed_on]", "><")
  39. .add("v[closed_on][]", "2019-03-01")
  40. .add("v[closed_on][]", "2019-03-05")
  41. .add("project_id", "962");
  42.  
  43. ResultsWrapper<Issue> issues = issueManager.getIssues(params);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement