-
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.
[SELC-4660] feat: getDelegations with search and pagination filters (#…
…421)
- Loading branch information
1 parent
9c2b15b
commit f3c8a79
Showing
20 changed files
with
2,049 additions
and
4,919 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
...java/it/pagopa/selfcare/dashboard/connector/model/delegation/GetDelegationParameters.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 it.pagopa.selfcare.dashboard.connector.model.delegation; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class GetDelegationParameters { | ||
private String from; | ||
private String to; | ||
private String productId; | ||
private String search; | ||
private String taxCode; | ||
private String mode; | ||
private String order; | ||
private Integer page; | ||
private Integer size; | ||
} |
6 changes: 6 additions & 0 deletions
6
...main/java/it/pagopa/selfcare/dashboard/connector/model/delegation/GetDelegationsMode.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,6 @@ | ||
package it.pagopa.selfcare.dashboard.connector.model.delegation; | ||
|
||
public enum GetDelegationsMode { | ||
FULL, | ||
NORMAL | ||
} |
9 changes: 9 additions & 0 deletions
9
...ctor-api/src/main/java/it/pagopa/selfcare/dashboard/connector/model/delegation/Order.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,9 @@ | ||
package it.pagopa.selfcare.dashboard.connector.model.delegation; | ||
|
||
public enum Order { | ||
|
||
NONE, | ||
ASC, | ||
DESC | ||
|
||
} |
Oops, something went wrong.