-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1026 from bcgov/feature/collection-pagination
EDX-2771, EDX-2535, EDX-2534 - adds pagination for sdc collections
- Loading branch information
Showing
21 changed files
with
596 additions
and
105 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
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
18 changes: 18 additions & 0 deletions
18
api/src/main/java/ca/bc/gov/educ/studentdatacollection/api/filter/CollectionFilterSpecs.java
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package ca.bc.gov.educ.studentdatacollection.api.filter; | ||
|
||
import ca.bc.gov.educ.studentdatacollection.api.model.v1.CollectionEntity; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.springframework.stereotype.Service; | ||
|
||
import java.time.chrono.ChronoLocalDate; | ||
import java.time.chrono.ChronoLocalDateTime; | ||
import java.util.UUID; | ||
|
||
@Service | ||
@Slf4j | ||
public class CollectionFilterSpecs extends BaseFilterSpecs<CollectionEntity> { | ||
|
||
public CollectionFilterSpecs(FilterSpecifications<CollectionEntity, ChronoLocalDate> dateFilterSpecifications, FilterSpecifications<CollectionEntity, ChronoLocalDateTime<?>> dateTimeFilterSpecifications, FilterSpecifications<CollectionEntity, Integer> integerFilterSpecifications, FilterSpecifications<CollectionEntity, String> stringFilterSpecifications, FilterSpecifications<CollectionEntity, Long> longFilterSpecifications, FilterSpecifications<CollectionEntity, UUID> uuidFilterSpecifications, FilterSpecifications<CollectionEntity, Boolean> booleanFilterSpecifications, Converters converters) { | ||
super(dateFilterSpecifications, dateTimeFilterSpecifications, integerFilterSpecifications, stringFilterSpecifications, longFilterSpecifications, uuidFilterSpecifications, booleanFilterSpecifications, converters); | ||
} | ||
} |
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
Oops, something went wrong.