-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added new endpoint for banner search (#60)
- Loading branch information
1 parent
917c369
commit 24b4712
Showing
7 changed files
with
167 additions
and
19 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
...in/java/org/tkit/onecx/announcement/domain/criteria/AnnouncementBannerSearchCriteria.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,26 @@ | ||
package org.tkit.onecx.announcement.domain.criteria; | ||
|
||
import java.time.OffsetDateTime; | ||
|
||
import jakarta.validation.Valid; | ||
|
||
import io.quarkus.runtime.annotations.RegisterForReflection; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
@RegisterForReflection | ||
public class AnnouncementBannerSearchCriteria { | ||
|
||
private @Valid OffsetDateTime currentDate; | ||
|
||
private @Valid String productName; | ||
|
||
private @Valid String workspaceName; | ||
|
||
private @Valid Integer pageNumber = 0; | ||
|
||
private @Valid Integer pageSize = 100; | ||
|
||
} |
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