-
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.
Co-authored-by: ElisKina-dev <[email protected]> Co-authored-by: EmVal <[email protected]>
- Loading branch information
1 parent
4a2fd03
commit accdacf
Showing
37 changed files
with
765 additions
and
399 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
src/main/java/it/gov/pagopa/atmlayer/service/model/dto/BankConfigTripletDto.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
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
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 |
---|---|---|
|
@@ -12,11 +12,11 @@ | |
@Data | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class UserProfileAllDto { | ||
@Schema(example = "[email protected]") | ||
@Schema(example = "[email protected]", format = "byte", maxLength = 255) | ||
private String userId; | ||
private UserProfileEnum profile; | ||
@Schema(example = "2024-02-07T11:38:58.445+00:00") | ||
@Schema(example = "{\"date\":\"2023-11-03T14:18:36.635+00:00\"}") | ||
private Timestamp createdAt; | ||
@Schema(example = "2024-02-07T11:38:58.445+00:00") | ||
@Schema(example = "{\"date\":\"2023-11-03T14:18:36.635+00:00\"}") | ||
private Timestamp lastUpdatedAt; | ||
} |
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 |
---|---|---|
|
@@ -15,10 +15,10 @@ public class UserProfileCreationDto { | |
|
||
@NotNull(message = "is required") | ||
@Email(message = "must be an email address in the correct format") | ||
@Schema(required = true, example = "[email protected]") | ||
@Schema(required = true, example = "[email protected]", format="byte", maxLength = 255) | ||
private String userId; | ||
@NotNull(message = "is required") | ||
@Schema(required = true, description = "1 = GUEST, 2 = OPERATOR, 3 = ADMIN") | ||
@Schema(required = true, description = "1 = GUEST, 2 = OPERATOR, 3 = ADMIN", minimum = "1", maximum = "10") | ||
private Integer profile; | ||
@Schema(hidden = true) | ||
private Timestamp createdAt; | ||
|
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 |
---|---|---|
|
@@ -12,14 +12,14 @@ | |
@Data | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class UserProfileDto { | ||
@Schema(example = "[email protected]") | ||
@Schema(example = "[email protected]", format = "byte", maxLength = 255) | ||
private String userId; | ||
private UserProfileEnum profile; | ||
private Boolean visible; | ||
private Boolean editable; | ||
private Boolean admin; | ||
@Schema(example = "2024-02-07T11:38:58.445+00:00") | ||
@Schema(example = "{\"date\":\"2023-11-03T14:18:36.635+00:00\"}") | ||
private Timestamp createdAt; | ||
@Schema(example = "2024-02-07T11:38:58.445+00:00") | ||
@Schema(example = "{\"date\":\"2023-11-03T14:18:36.635+00:00\"}") | ||
private Timestamp lastUpdatedAt; | ||
} |
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
Oops, something went wrong.