/modules/dxp/apps/portal-workflow/portal-workflow-metrics-rest-client/src/main/java/com/liferay/portal/workflow/metrics/rest/client/resource/v1_0/TaskResource.java

http://github.com/liferay/liferay-portal · Java · 842 lines · 623 code · 202 blank · 17 comment · 63 complexity · 665eff1aaf9040a493a7c2708985a96a MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * The contents of this file are subject to the terms of the Liferay Enterprise
  5. * Subscription License ("License"). You may not use this file except in
  6. * compliance with the License. You can obtain a copy of the License by
  7. * contacting Liferay, Inc. See the License for the specific language governing
  8. * permissions and limitations under the License, including but not limited to
  9. * distribution rights of the Software.
  10. *
  11. *
  12. *
  13. */
  14. package com.liferay.portal.workflow.metrics.rest.client.resource.v1_0;
  15. import com.liferay.portal.workflow.metrics.rest.client.dto.v1_0.Task;
  16. import com.liferay.portal.workflow.metrics.rest.client.dto.v1_0.TaskBulkSelection;
  17. import com.liferay.portal.workflow.metrics.rest.client.http.HttpInvoker;
  18. import com.liferay.portal.workflow.metrics.rest.client.pagination.Page;
  19. import com.liferay.portal.workflow.metrics.rest.client.pagination.Pagination;
  20. import com.liferay.portal.workflow.metrics.rest.client.problem.Problem;
  21. import com.liferay.portal.workflow.metrics.rest.client.serdes.v1_0.TaskSerDes;
  22. import java.util.LinkedHashMap;
  23. import java.util.Locale;
  24. import java.util.Map;
  25. import java.util.logging.Level;
  26. import java.util.logging.Logger;
  27. import javax.annotation.Generated;
  28. /**
  29. * @author Rafael Praxedes
  30. * @generated
  31. */
  32. @Generated("")
  33. public interface TaskResource {
  34. public static Builder builder() {
  35. return new Builder();
  36. }
  37. public Page<Task> getProcessTasksPage(Long processId) throws Exception;
  38. public HttpInvoker.HttpResponse getProcessTasksPageHttpResponse(
  39. Long processId)
  40. throws Exception;
  41. public Task postProcessTask(Long processId, Task task) throws Exception;
  42. public HttpInvoker.HttpResponse postProcessTaskHttpResponse(
  43. Long processId, Task task)
  44. throws Exception;
  45. public void postProcessTaskBatch(
  46. Long processId, String callbackURL, Object object)
  47. throws Exception;
  48. public HttpInvoker.HttpResponse postProcessTaskBatchHttpResponse(
  49. Long processId, String callbackURL, Object object)
  50. throws Exception;
  51. public void deleteProcessTask(Long processId, Long taskId) throws Exception;
  52. public HttpInvoker.HttpResponse deleteProcessTaskHttpResponse(
  53. Long processId, Long taskId)
  54. throws Exception;
  55. public Task getProcessTask(Long processId, Long taskId) throws Exception;
  56. public HttpInvoker.HttpResponse getProcessTaskHttpResponse(
  57. Long processId, Long taskId)
  58. throws Exception;
  59. public void patchProcessTask(Long processId, Long taskId, Task task)
  60. throws Exception;
  61. public HttpInvoker.HttpResponse patchProcessTaskHttpResponse(
  62. Long processId, Long taskId, Task task)
  63. throws Exception;
  64. public void patchProcessTaskComplete(Long processId, Long taskId, Task task)
  65. throws Exception;
  66. public HttpInvoker.HttpResponse patchProcessTaskCompleteHttpResponse(
  67. Long processId, Long taskId, Task task)
  68. throws Exception;
  69. public Page<Task> postTasksPage(
  70. Pagination pagination, TaskBulkSelection taskBulkSelection)
  71. throws Exception;
  72. public HttpInvoker.HttpResponse postTasksPageHttpResponse(
  73. Pagination pagination, TaskBulkSelection taskBulkSelection)
  74. throws Exception;
  75. public static class Builder {
  76. public Builder authentication(String login, String password) {
  77. _login = login;
  78. _password = password;
  79. return this;
  80. }
  81. public TaskResource build() {
  82. return new TaskResourceImpl(this);
  83. }
  84. public Builder endpoint(String host, int port, String scheme) {
  85. _host = host;
  86. _port = port;
  87. _scheme = scheme;
  88. return this;
  89. }
  90. public Builder header(String key, String value) {
  91. _headers.put(key, value);
  92. return this;
  93. }
  94. public Builder locale(Locale locale) {
  95. _locale = locale;
  96. return this;
  97. }
  98. public Builder parameter(String key, String value) {
  99. _parameters.put(key, value);
  100. return this;
  101. }
  102. public Builder parameters(String... parameters) {
  103. if ((parameters.length % 2) != 0) {
  104. throw new IllegalArgumentException(
  105. "Parameters length is not an even number");
  106. }
  107. for (int i = 0; i < parameters.length; i += 2) {
  108. String parameterName = String.valueOf(parameters[i]);
  109. String parameterValue = String.valueOf(parameters[i + 1]);
  110. _parameters.put(parameterName, parameterValue);
  111. }
  112. return this;
  113. }
  114. private Builder() {
  115. }
  116. private Map<String, String> _headers = new LinkedHashMap<>();
  117. private String _host = "localhost";
  118. private Locale _locale;
  119. private String _login = "";
  120. private String _password = "";
  121. private Map<String, String> _parameters = new LinkedHashMap<>();
  122. private int _port = 8080;
  123. private String _scheme = "http";
  124. }
  125. public static class TaskResourceImpl implements TaskResource {
  126. public Page<Task> getProcessTasksPage(Long processId) throws Exception {
  127. HttpInvoker.HttpResponse httpResponse =
  128. getProcessTasksPageHttpResponse(processId);
  129. String content = httpResponse.getContent();
  130. if ((httpResponse.getStatusCode() / 100) != 2) {
  131. _logger.log(
  132. Level.WARNING,
  133. "Unable to process HTTP response content: " + content);
  134. _logger.log(
  135. Level.WARNING,
  136. "HTTP response message: " + httpResponse.getMessage());
  137. _logger.log(
  138. Level.WARNING,
  139. "HTTP response status code: " +
  140. httpResponse.getStatusCode());
  141. throw new Problem.ProblemException(Problem.toDTO(content));
  142. }
  143. else {
  144. _logger.fine("HTTP response content: " + content);
  145. _logger.fine(
  146. "HTTP response message: " + httpResponse.getMessage());
  147. _logger.fine(
  148. "HTTP response status code: " +
  149. httpResponse.getStatusCode());
  150. }
  151. try {
  152. return Page.of(content, TaskSerDes::toDTO);
  153. }
  154. catch (Exception e) {
  155. _logger.log(
  156. Level.WARNING,
  157. "Unable to process HTTP response: " + content, e);
  158. throw new Problem.ProblemException(Problem.toDTO(content));
  159. }
  160. }
  161. public HttpInvoker.HttpResponse getProcessTasksPageHttpResponse(
  162. Long processId)
  163. throws Exception {
  164. HttpInvoker httpInvoker = HttpInvoker.newHttpInvoker();
  165. if (_builder._locale != null) {
  166. httpInvoker.header(
  167. "Accept-Language", _builder._locale.toLanguageTag());
  168. }
  169. for (Map.Entry<String, String> entry :
  170. _builder._headers.entrySet()) {
  171. httpInvoker.header(entry.getKey(), entry.getValue());
  172. }
  173. for (Map.Entry<String, String> entry :
  174. _builder._parameters.entrySet()) {
  175. httpInvoker.parameter(entry.getKey(), entry.getValue());
  176. }
  177. httpInvoker.httpMethod(HttpInvoker.HttpMethod.GET);
  178. httpInvoker.path(
  179. _builder._scheme + "://" + _builder._host + ":" +
  180. _builder._port +
  181. "/o/portal-workflow-metrics/v1.0/processes/{processId}/tasks");
  182. httpInvoker.path("processId", processId);
  183. httpInvoker.userNameAndPassword(
  184. _builder._login + ":" + _builder._password);
  185. return httpInvoker.invoke();
  186. }
  187. public Task postProcessTask(Long processId, Task task)
  188. throws Exception {
  189. HttpInvoker.HttpResponse httpResponse = postProcessTaskHttpResponse(
  190. processId, task);
  191. String content = httpResponse.getContent();
  192. if ((httpResponse.getStatusCode() / 100) != 2) {
  193. _logger.log(
  194. Level.WARNING,
  195. "Unable to process HTTP response content: " + content);
  196. _logger.log(
  197. Level.WARNING,
  198. "HTTP response message: " + httpResponse.getMessage());
  199. _logger.log(
  200. Level.WARNING,
  201. "HTTP response status code: " +
  202. httpResponse.getStatusCode());
  203. throw new Problem.ProblemException(Problem.toDTO(content));
  204. }
  205. else {
  206. _logger.fine("HTTP response content: " + content);
  207. _logger.fine(
  208. "HTTP response message: " + httpResponse.getMessage());
  209. _logger.fine(
  210. "HTTP response status code: " +
  211. httpResponse.getStatusCode());
  212. }
  213. try {
  214. return TaskSerDes.toDTO(content);
  215. }
  216. catch (Exception e) {
  217. _logger.log(
  218. Level.WARNING,
  219. "Unable to process HTTP response: " + content, e);
  220. throw new Problem.ProblemException(Problem.toDTO(content));
  221. }
  222. }
  223. public HttpInvoker.HttpResponse postProcessTaskHttpResponse(
  224. Long processId, Task task)
  225. throws Exception {
  226. HttpInvoker httpInvoker = HttpInvoker.newHttpInvoker();
  227. httpInvoker.body(task.toString(), "application/json");
  228. if (_builder._locale != null) {
  229. httpInvoker.header(
  230. "Accept-Language", _builder._locale.toLanguageTag());
  231. }
  232. for (Map.Entry<String, String> entry :
  233. _builder._headers.entrySet()) {
  234. httpInvoker.header(entry.getKey(), entry.getValue());
  235. }
  236. for (Map.Entry<String, String> entry :
  237. _builder._parameters.entrySet()) {
  238. httpInvoker.parameter(entry.getKey(), entry.getValue());
  239. }
  240. httpInvoker.httpMethod(HttpInvoker.HttpMethod.POST);
  241. httpInvoker.path(
  242. _builder._scheme + "://" + _builder._host + ":" +
  243. _builder._port +
  244. "/o/portal-workflow-metrics/v1.0/processes/{processId}/tasks");
  245. httpInvoker.path("processId", processId);
  246. httpInvoker.userNameAndPassword(
  247. _builder._login + ":" + _builder._password);
  248. return httpInvoker.invoke();
  249. }
  250. public void postProcessTaskBatch(
  251. Long processId, String callbackURL, Object object)
  252. throws Exception {
  253. HttpInvoker.HttpResponse httpResponse =
  254. postProcessTaskBatchHttpResponse(
  255. processId, callbackURL, object);
  256. String content = httpResponse.getContent();
  257. if ((httpResponse.getStatusCode() / 100) != 2) {
  258. _logger.log(
  259. Level.WARNING,
  260. "Unable to process HTTP response content: " + content);
  261. _logger.log(
  262. Level.WARNING,
  263. "HTTP response message: " + httpResponse.getMessage());
  264. _logger.log(
  265. Level.WARNING,
  266. "HTTP response status code: " +
  267. httpResponse.getStatusCode());
  268. throw new Problem.ProblemException(Problem.toDTO(content));
  269. }
  270. else {
  271. _logger.fine("HTTP response content: " + content);
  272. _logger.fine(
  273. "HTTP response message: " + httpResponse.getMessage());
  274. _logger.fine(
  275. "HTTP response status code: " +
  276. httpResponse.getStatusCode());
  277. }
  278. }
  279. public HttpInvoker.HttpResponse postProcessTaskBatchHttpResponse(
  280. Long processId, String callbackURL, Object object)
  281. throws Exception {
  282. HttpInvoker httpInvoker = HttpInvoker.newHttpInvoker();
  283. httpInvoker.body(object.toString(), "application/json");
  284. if (_builder._locale != null) {
  285. httpInvoker.header(
  286. "Accept-Language", _builder._locale.toLanguageTag());
  287. }
  288. for (Map.Entry<String, String> entry :
  289. _builder._headers.entrySet()) {
  290. httpInvoker.header(entry.getKey(), entry.getValue());
  291. }
  292. for (Map.Entry<String, String> entry :
  293. _builder._parameters.entrySet()) {
  294. httpInvoker.parameter(entry.getKey(), entry.getValue());
  295. }
  296. httpInvoker.httpMethod(HttpInvoker.HttpMethod.POST);
  297. if (callbackURL != null) {
  298. httpInvoker.parameter(
  299. "callbackURL", String.valueOf(callbackURL));
  300. }
  301. httpInvoker.path(
  302. _builder._scheme + "://" + _builder._host + ":" +
  303. _builder._port +
  304. "/o/portal-workflow-metrics/v1.0/processes/{processId}/tasks/batch");
  305. httpInvoker.path("processId", processId);
  306. httpInvoker.userNameAndPassword(
  307. _builder._login + ":" + _builder._password);
  308. return httpInvoker.invoke();
  309. }
  310. public void deleteProcessTask(Long processId, Long taskId)
  311. throws Exception {
  312. HttpInvoker.HttpResponse httpResponse =
  313. deleteProcessTaskHttpResponse(processId, taskId);
  314. String content = httpResponse.getContent();
  315. if ((httpResponse.getStatusCode() / 100) != 2) {
  316. _logger.log(
  317. Level.WARNING,
  318. "Unable to process HTTP response content: " + content);
  319. _logger.log(
  320. Level.WARNING,
  321. "HTTP response message: " + httpResponse.getMessage());
  322. _logger.log(
  323. Level.WARNING,
  324. "HTTP response status code: " +
  325. httpResponse.getStatusCode());
  326. throw new Problem.ProblemException(Problem.toDTO(content));
  327. }
  328. else {
  329. _logger.fine("HTTP response content: " + content);
  330. _logger.fine(
  331. "HTTP response message: " + httpResponse.getMessage());
  332. _logger.fine(
  333. "HTTP response status code: " +
  334. httpResponse.getStatusCode());
  335. }
  336. try {
  337. return;
  338. }
  339. catch (Exception e) {
  340. _logger.log(
  341. Level.WARNING,
  342. "Unable to process HTTP response: " + content, e);
  343. throw new Problem.ProblemException(Problem.toDTO(content));
  344. }
  345. }
  346. public HttpInvoker.HttpResponse deleteProcessTaskHttpResponse(
  347. Long processId, Long taskId)
  348. throws Exception {
  349. HttpInvoker httpInvoker = HttpInvoker.newHttpInvoker();
  350. if (_builder._locale != null) {
  351. httpInvoker.header(
  352. "Accept-Language", _builder._locale.toLanguageTag());
  353. }
  354. for (Map.Entry<String, String> entry :
  355. _builder._headers.entrySet()) {
  356. httpInvoker.header(entry.getKey(), entry.getValue());
  357. }
  358. for (Map.Entry<String, String> entry :
  359. _builder._parameters.entrySet()) {
  360. httpInvoker.parameter(entry.getKey(), entry.getValue());
  361. }
  362. httpInvoker.httpMethod(HttpInvoker.HttpMethod.DELETE);
  363. httpInvoker.path(
  364. _builder._scheme + "://" + _builder._host + ":" +
  365. _builder._port +
  366. "/o/portal-workflow-metrics/v1.0/processes/{processId}/tasks/{taskId}");
  367. httpInvoker.path("processId", processId);
  368. httpInvoker.path("taskId", taskId);
  369. httpInvoker.userNameAndPassword(
  370. _builder._login + ":" + _builder._password);
  371. return httpInvoker.invoke();
  372. }
  373. public Task getProcessTask(Long processId, Long taskId)
  374. throws Exception {
  375. HttpInvoker.HttpResponse httpResponse = getProcessTaskHttpResponse(
  376. processId, taskId);
  377. String content = httpResponse.getContent();
  378. if ((httpResponse.getStatusCode() / 100) != 2) {
  379. _logger.log(
  380. Level.WARNING,
  381. "Unable to process HTTP response content: " + content);
  382. _logger.log(
  383. Level.WARNING,
  384. "HTTP response message: " + httpResponse.getMessage());
  385. _logger.log(
  386. Level.WARNING,
  387. "HTTP response status code: " +
  388. httpResponse.getStatusCode());
  389. throw new Problem.ProblemException(Problem.toDTO(content));
  390. }
  391. else {
  392. _logger.fine("HTTP response content: " + content);
  393. _logger.fine(
  394. "HTTP response message: " + httpResponse.getMessage());
  395. _logger.fine(
  396. "HTTP response status code: " +
  397. httpResponse.getStatusCode());
  398. }
  399. try {
  400. return TaskSerDes.toDTO(content);
  401. }
  402. catch (Exception e) {
  403. _logger.log(
  404. Level.WARNING,
  405. "Unable to process HTTP response: " + content, e);
  406. throw new Problem.ProblemException(Problem.toDTO(content));
  407. }
  408. }
  409. public HttpInvoker.HttpResponse getProcessTaskHttpResponse(
  410. Long processId, Long taskId)
  411. throws Exception {
  412. HttpInvoker httpInvoker = HttpInvoker.newHttpInvoker();
  413. if (_builder._locale != null) {
  414. httpInvoker.header(
  415. "Accept-Language", _builder._locale.toLanguageTag());
  416. }
  417. for (Map.Entry<String, String> entry :
  418. _builder._headers.entrySet()) {
  419. httpInvoker.header(entry.getKey(), entry.getValue());
  420. }
  421. for (Map.Entry<String, String> entry :
  422. _builder._parameters.entrySet()) {
  423. httpInvoker.parameter(entry.getKey(), entry.getValue());
  424. }
  425. httpInvoker.httpMethod(HttpInvoker.HttpMethod.GET);
  426. httpInvoker.path(
  427. _builder._scheme + "://" + _builder._host + ":" +
  428. _builder._port +
  429. "/o/portal-workflow-metrics/v1.0/processes/{processId}/tasks/{taskId}");
  430. httpInvoker.path("processId", processId);
  431. httpInvoker.path("taskId", taskId);
  432. httpInvoker.userNameAndPassword(
  433. _builder._login + ":" + _builder._password);
  434. return httpInvoker.invoke();
  435. }
  436. public void patchProcessTask(Long processId, Long taskId, Task task)
  437. throws Exception {
  438. HttpInvoker.HttpResponse httpResponse =
  439. patchProcessTaskHttpResponse(processId, taskId, task);
  440. String content = httpResponse.getContent();
  441. if ((httpResponse.getStatusCode() / 100) != 2) {
  442. _logger.log(
  443. Level.WARNING,
  444. "Unable to process HTTP response content: " + content);
  445. _logger.log(
  446. Level.WARNING,
  447. "HTTP response message: " + httpResponse.getMessage());
  448. _logger.log(
  449. Level.WARNING,
  450. "HTTP response status code: " +
  451. httpResponse.getStatusCode());
  452. throw new Problem.ProblemException(Problem.toDTO(content));
  453. }
  454. else {
  455. _logger.fine("HTTP response content: " + content);
  456. _logger.fine(
  457. "HTTP response message: " + httpResponse.getMessage());
  458. _logger.fine(
  459. "HTTP response status code: " +
  460. httpResponse.getStatusCode());
  461. }
  462. try {
  463. return;
  464. }
  465. catch (Exception e) {
  466. _logger.log(
  467. Level.WARNING,
  468. "Unable to process HTTP response: " + content, e);
  469. throw new Problem.ProblemException(Problem.toDTO(content));
  470. }
  471. }
  472. public HttpInvoker.HttpResponse patchProcessTaskHttpResponse(
  473. Long processId, Long taskId, Task task)
  474. throws Exception {
  475. HttpInvoker httpInvoker = HttpInvoker.newHttpInvoker();
  476. httpInvoker.body(task.toString(), "application/json");
  477. if (_builder._locale != null) {
  478. httpInvoker.header(
  479. "Accept-Language", _builder._locale.toLanguageTag());
  480. }
  481. for (Map.Entry<String, String> entry :
  482. _builder._headers.entrySet()) {
  483. httpInvoker.header(entry.getKey(), entry.getValue());
  484. }
  485. for (Map.Entry<String, String> entry :
  486. _builder._parameters.entrySet()) {
  487. httpInvoker.parameter(entry.getKey(), entry.getValue());
  488. }
  489. httpInvoker.httpMethod(HttpInvoker.HttpMethod.PATCH);
  490. httpInvoker.path(
  491. _builder._scheme + "://" + _builder._host + ":" +
  492. _builder._port +
  493. "/o/portal-workflow-metrics/v1.0/processes/{processId}/tasks/{taskId}");
  494. httpInvoker.path("processId", processId);
  495. httpInvoker.path("taskId", taskId);
  496. httpInvoker.userNameAndPassword(
  497. _builder._login + ":" + _builder._password);
  498. return httpInvoker.invoke();
  499. }
  500. public void patchProcessTaskComplete(
  501. Long processId, Long taskId, Task task)
  502. throws Exception {
  503. HttpInvoker.HttpResponse httpResponse =
  504. patchProcessTaskCompleteHttpResponse(processId, taskId, task);
  505. String content = httpResponse.getContent();
  506. if ((httpResponse.getStatusCode() / 100) != 2) {
  507. _logger.log(
  508. Level.WARNING,
  509. "Unable to process HTTP response content: " + content);
  510. _logger.log(
  511. Level.WARNING,
  512. "HTTP response message: " + httpResponse.getMessage());
  513. _logger.log(
  514. Level.WARNING,
  515. "HTTP response status code: " +
  516. httpResponse.getStatusCode());
  517. throw new Problem.ProblemException(Problem.toDTO(content));
  518. }
  519. else {
  520. _logger.fine("HTTP response content: " + content);
  521. _logger.fine(
  522. "HTTP response message: " + httpResponse.getMessage());
  523. _logger.fine(
  524. "HTTP response status code: " +
  525. httpResponse.getStatusCode());
  526. }
  527. try {
  528. return;
  529. }
  530. catch (Exception e) {
  531. _logger.log(
  532. Level.WARNING,
  533. "Unable to process HTTP response: " + content, e);
  534. throw new Problem.ProblemException(Problem.toDTO(content));
  535. }
  536. }
  537. public HttpInvoker.HttpResponse patchProcessTaskCompleteHttpResponse(
  538. Long processId, Long taskId, Task task)
  539. throws Exception {
  540. HttpInvoker httpInvoker = HttpInvoker.newHttpInvoker();
  541. httpInvoker.body(task.toString(), "application/json");
  542. if (_builder._locale != null) {
  543. httpInvoker.header(
  544. "Accept-Language", _builder._locale.toLanguageTag());
  545. }
  546. for (Map.Entry<String, String> entry :
  547. _builder._headers.entrySet()) {
  548. httpInvoker.header(entry.getKey(), entry.getValue());
  549. }
  550. for (Map.Entry<String, String> entry :
  551. _builder._parameters.entrySet()) {
  552. httpInvoker.parameter(entry.getKey(), entry.getValue());
  553. }
  554. httpInvoker.httpMethod(HttpInvoker.HttpMethod.PATCH);
  555. httpInvoker.path(
  556. _builder._scheme + "://" + _builder._host + ":" +
  557. _builder._port +
  558. "/o/portal-workflow-metrics/v1.0/processes/{processId}/tasks/{taskId}/complete");
  559. httpInvoker.path("processId", processId);
  560. httpInvoker.path("taskId", taskId);
  561. httpInvoker.userNameAndPassword(
  562. _builder._login + ":" + _builder._password);
  563. return httpInvoker.invoke();
  564. }
  565. public Page<Task> postTasksPage(
  566. Pagination pagination, TaskBulkSelection taskBulkSelection)
  567. throws Exception {
  568. HttpInvoker.HttpResponse httpResponse = postTasksPageHttpResponse(
  569. pagination, taskBulkSelection);
  570. String content = httpResponse.getContent();
  571. if ((httpResponse.getStatusCode() / 100) != 2) {
  572. _logger.log(
  573. Level.WARNING,
  574. "Unable to process HTTP response content: " + content);
  575. _logger.log(
  576. Level.WARNING,
  577. "HTTP response message: " + httpResponse.getMessage());
  578. _logger.log(
  579. Level.WARNING,
  580. "HTTP response status code: " +
  581. httpResponse.getStatusCode());
  582. throw new Problem.ProblemException(Problem.toDTO(content));
  583. }
  584. else {
  585. _logger.fine("HTTP response content: " + content);
  586. _logger.fine(
  587. "HTTP response message: " + httpResponse.getMessage());
  588. _logger.fine(
  589. "HTTP response status code: " +
  590. httpResponse.getStatusCode());
  591. }
  592. try {
  593. return Page.of(content, TaskSerDes::toDTO);
  594. }
  595. catch (Exception e) {
  596. _logger.log(
  597. Level.WARNING,
  598. "Unable to process HTTP response: " + content, e);
  599. throw new Problem.ProblemException(Problem.toDTO(content));
  600. }
  601. }
  602. public HttpInvoker.HttpResponse postTasksPageHttpResponse(
  603. Pagination pagination, TaskBulkSelection taskBulkSelection)
  604. throws Exception {
  605. HttpInvoker httpInvoker = HttpInvoker.newHttpInvoker();
  606. httpInvoker.body(taskBulkSelection.toString(), "application/json");
  607. if (_builder._locale != null) {
  608. httpInvoker.header(
  609. "Accept-Language", _builder._locale.toLanguageTag());
  610. }
  611. for (Map.Entry<String, String> entry :
  612. _builder._headers.entrySet()) {
  613. httpInvoker.header(entry.getKey(), entry.getValue());
  614. }
  615. for (Map.Entry<String, String> entry :
  616. _builder._parameters.entrySet()) {
  617. httpInvoker.parameter(entry.getKey(), entry.getValue());
  618. }
  619. httpInvoker.httpMethod(HttpInvoker.HttpMethod.POST);
  620. if (pagination != null) {
  621. httpInvoker.parameter(
  622. "page", String.valueOf(pagination.getPage()));
  623. httpInvoker.parameter(
  624. "pageSize", String.valueOf(pagination.getPageSize()));
  625. }
  626. httpInvoker.path(
  627. _builder._scheme + "://" + _builder._host + ":" +
  628. _builder._port + "/o/portal-workflow-metrics/v1.0/tasks");
  629. httpInvoker.userNameAndPassword(
  630. _builder._login + ":" + _builder._password);
  631. return httpInvoker.invoke();
  632. }
  633. private TaskResourceImpl(Builder builder) {
  634. _builder = builder;
  635. }
  636. private static final Logger _logger = Logger.getLogger(
  637. TaskResource.class.getName());
  638. private Builder _builder;
  639. }
  640. }