You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simple interface defining paging parameters, e.g. that might be submitted via an HTTP request.
The params are specific to some of our service requirements:
page: Integer
limit: Integer
primarySort: String
primaryDirection: Sort.Direction
secondarySort: String
secondaryDirection: Sort.Direction
Notes:
Our requirements dictated ability to have a primary and a secondary sort field and direction, which is the reason for the primary and secondary sort parameters.
The Sort.Direction is a Spring Data class/enum, which is why this is in the org.kiwiproject.spring.data package
The text was updated successfully, but these errors were encountered:
Simple interface defining paging parameters, e.g. that might be submitted via an HTTP request.
The params are specific to some of our service requirements:
page: Integer
limit: Integer
primarySort: String
primaryDirection: Sort.Direction
secondarySort: String
secondaryDirection: Sort.Direction
Notes:
Sort.Direction
is a Spring Data class/enum, which is why this is in theorg.kiwiproject.spring.data
packageThe text was updated successfully, but these errors were encountered: