diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2023-07-21 09:21:50 +0000 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2023-07-21 09:21:50 +0000 |
commit | f3e143422364cbdc7f4f6d68fc628d95773c454d (patch) | |
tree | 13ae2d08eee8261aeecfa1b75e0cc6636deba513 /app/src/main | |
parent | b146259516cc90cc9084bdf2f69c358b896cfdf7 (diff) |
Upgrade history openapi generator to 6.6.0
Issue-ID: PORTALNG-23
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Change-Id: I2234ba72aa6cc5013ff62261b91e7fd0480d73bf
Diffstat (limited to 'app/src/main')
-rw-r--r-- | app/src/main/java/org/onap/portal/history/controller/ActionsController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/java/org/onap/portal/history/controller/ActionsController.java b/app/src/main/java/org/onap/portal/history/controller/ActionsController.java index 9fd9f79..ab59806 100644 --- a/app/src/main/java/org/onap/portal/history/controller/ActionsController.java +++ b/app/src/main/java/org/onap/portal/history/controller/ActionsController.java @@ -79,7 +79,7 @@ public class ActionsController implements ActionsApi { } @Override - public Mono<ResponseEntity<ActionsListResponse>> listActions(String xRequestId, @Valid Optional<@Min(1) Integer> page, @Valid Optional<@Min(1) @Max(5000) Integer> pageSize, @Valid Optional<Integer> showLastHours, ServerWebExchange exchange) { + public Mono<ResponseEntity<ActionsListResponse>> listActions(String xRequestId, Optional<Integer> page, Optional<Integer> pageSize, Optional<Integer> showLastHours, ServerWebExchange exchange) { return actionsService .listActions(page.orElse(1), pageSize.orElse(10), showLastHours.orElse(portalHistoryConfig.getSaveInterval()), portalHistoryConfig.getSaveInterval(), xRequestId) |