-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update default values in Tracker exporters OpenAPI [TECH-1580]
- Loading branch information
1 parent
0995a6d
commit 516dfc2
Showing
5 changed files
with
46 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,15 +60,22 @@ | |
* | ||
* @author Giuseppe Nespolino <[email protected]> | ||
*/ | ||
@OpenApi.Shared(name = "EventRequestParams") | ||
@OpenApi.Property | ||
@Data | ||
@NoArgsConstructor | ||
public class EventRequestParams implements PageRequestParams { | ||
static final String DEFAULT_FIELDS_PARAM = "*,!relationships"; | ||
|
||
private Integer page = 1; | ||
private Integer pageSize = 50; | ||
@OpenApi.Property(defaultValue = "1") | ||
private Integer page; | ||
|
||
@OpenApi.Property(defaultValue = "50") | ||
private Integer pageSize; | ||
|
||
@OpenApi.Property(defaultValue = "false") | ||
private Boolean totalPages = false; | ||
Check notice Code scanning / CodeQL Missing Override annotation Note
This method overrides
PageRequestParams.getTotalPages Error loading related location Loading |
||
|
||
private Boolean skipPaging = false; | ||
Check notice Code scanning / CodeQL Missing Override annotation Note
This method overrides
PageRequestParams.getSkipPaging Error loading related location Loading |
||
|
||
private List<OrderCriteria> order = new ArrayList<>(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters