-
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 branch 'develop' into feat/PN-11245
- Loading branch information
Showing
80 changed files
with
1,136 additions
and
86 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
2 changes: 1 addition & 1 deletion
2
...pn/frontend/e2e/model/DigitalAddress.java → ...end/e2e/model/address/DigitalAddress.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
2 changes: 1 addition & 1 deletion
2
...end/e2e/model/DigitalAddressResponse.java → ...model/address/DigitalAddressResponse.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
2 changes: 1 addition & 1 deletion
2
...n/frontend/e2e/model/DigitalDomicile.java → ...nd/e2e/model/address/DigitalDomicile.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
2 changes: 1 addition & 1 deletion
2
...n/frontend/e2e/model/PhysicalAddress.java → ...nd/e2e/model/address/PhysicalAddress.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
2 changes: 1 addition & 1 deletion
2
.../it/pn/frontend/e2e/model/Attachment.java → ...ntend/e2e/model/documents/Attachment.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package it.pn.frontend.e2e.model; | ||
package it.pn.frontend.e2e.model.documents; | ||
|
||
|
||
import lombok.Getter; | ||
|
2 changes: 1 addition & 1 deletion
2
...ava/it/pn/frontend/e2e/model/Digests.java → ...frontend/e2e/model/documents/Digests.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package it.pn.frontend.e2e.model; | ||
package it.pn.frontend.e2e.model.documents; | ||
|
||
import lombok.Data; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...va/it/pn/frontend/e2e/model/Document.java → ...rontend/e2e/model/documents/Document.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
2 changes: 1 addition & 1 deletion
2
...rontend/e2e/model/MetadataAttachment.java → ...e/model/documents/MetadataAttachment.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
2 changes: 1 addition & 1 deletion
2
...pn/frontend/e2e/model/PreLoadRequest.java → ...d/e2e/model/documents/PreLoadRequest.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
2 changes: 1 addition & 1 deletion
2
...n/frontend/e2e/model/PreLoadResponse.java → .../e2e/model/documents/PreLoadResponse.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
2 changes: 1 addition & 1 deletion
2
...in/java/it/pn/frontend/e2e/model/Ref.java → .../pn/frontend/e2e/model/documents/Ref.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package it.pn.frontend.e2e.model; | ||
package it.pn.frontend.e2e.model.documents; | ||
|
||
import lombok.Data; | ||
|
||
|
25 changes: 25 additions & 0 deletions
25
src/main/java/it/pn/frontend/e2e/model/enums/DocumentType.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,25 @@ | ||
package it.pn.frontend.e2e.model.enums; | ||
|
||
public enum DocumentType { | ||
ATTO_NOTIFICATO("ATTO_NOTIFICATO"), | ||
ATTESTAZIONE_OPPONIBILE_A_TERZI("ATTESTAZIONE_OPPONIBILE_A_TERZI"); | ||
|
||
private final String value; | ||
|
||
DocumentType(String value) { | ||
this.value = value; | ||
} | ||
|
||
public String getValue() { | ||
return value; | ||
} | ||
|
||
public static DocumentType fromValue(String value) { | ||
for (DocumentType code : DocumentType.values()) { | ||
if (code.value.equalsIgnoreCase(value)) { | ||
return code; | ||
} | ||
} | ||
throw new IllegalArgumentException("Valore non valido per DocumentType: " + value); | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
src/main/java/it/pn/frontend/e2e/model/enums/RaddAltResponseCode.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,31 @@ | ||
package it.pn.frontend.e2e.model.enums; | ||
|
||
public enum RaddAltResponseCode { | ||
|
||
ZERO(0), | ||
TWO(2), | ||
THREE(3), | ||
FOUR(4), | ||
TEN(10), | ||
EIGHTY(80), | ||
NINETY_NINE(99); | ||
|
||
private final int value; | ||
|
||
RaddAltResponseCode(int value) { | ||
this.value = value; | ||
} | ||
|
||
public int getValue() { | ||
return value; | ||
} | ||
|
||
public static RaddAltResponseCode fromValue(int value) { | ||
for (RaddAltResponseCode code : RaddAltResponseCode.values()) { | ||
if (code.value == value) { | ||
return code; | ||
} | ||
} | ||
throw new IllegalArgumentException("Valore non valido per Code: " + value); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...va/it/pn/frontend/e2e/model/Incident.java → ...rontend/e2e/model/incidents/Incident.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
2 changes: 1 addition & 1 deletion
2
...end/e2e/model/IncidentStatusResponse.java → ...del/incidents/IncidentStatusResponse.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
2 changes: 1 addition & 1 deletion
2
...rontend/e2e/model/NewIncidentRequest.java → ...e/model/incidents/NewIncidentRequest.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
3 changes: 2 additions & 1 deletion
3
...end/e2e/model/NewNotificationRequest.java → .../notification/NewNotificationRequest.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
2 changes: 1 addition & 1 deletion
2
...nd/e2e/model/NewNotificationResponse.java → ...notification/NewNotificationResponse.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
2 changes: 1 addition & 1 deletion
2
.../model/NotificationAttachmentBodyRef.java → ...cation/NotificationAttachmentBodyRef.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package it.pn.frontend.e2e.model; | ||
package it.pn.frontend.e2e.model.notification; | ||
|
||
import lombok.Data; | ||
|
||
|
3 changes: 2 additions & 1 deletion
3
...ntend/e2e/model/NotificationDocument.java → ...el/notification/NotificationDocument.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
3 changes: 2 additions & 1 deletion
3
...model/NotificationMetadataAttachment.java → ...ation/NotificationMetadataAttachment.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
3 changes: 2 additions & 1 deletion
3
.../model/NotificationPaymentAttachment.java → ...cation/NotificationPaymentAttachment.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
4 changes: 3 additions & 1 deletion
4
...nd/e2e/model/NotificationPaymentItem.java → ...notification/NotificationPaymentItem.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
4 changes: 3 additions & 1 deletion
4
...a/it/pn/frontend/e2e/model/Recipient.java → ...end/e2e/model/notification/Recipient.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
3 changes: 2 additions & 1 deletion
3
...in/java/it/pn/frontend/e2e/model/F24.java → ...t/pn/frontend/e2e/model/payments/F24.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
3 changes: 2 additions & 1 deletion
3
.../it/pn/frontend/e2e/model/F24Payment.java → ...ontend/e2e/model/payments/F24Payment.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
3 changes: 2 additions & 1 deletion
3
...java/it/pn/frontend/e2e/model/PagoPa.java → ...n/frontend/e2e/model/payments/PagoPa.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
3 changes: 2 additions & 1 deletion
3
.../pn/frontend/e2e/model/PagoPaPayment.java → ...end/e2e/model/payments/PagoPaPayment.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
2 changes: 1 addition & 1 deletion
2
...ava/it/pn/frontend/e2e/model/Payment.java → .../frontend/e2e/model/payments/Payment.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
27 changes: 27 additions & 0 deletions
27
src/main/java/it/pn/frontend/e2e/model/radd/ActInquiry/ActInquiryRequest.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,27 @@ | ||
package it.pn.frontend.e2e.model.radd.ActInquiry; | ||
|
||
import it.pn.frontend.e2e.model.enums.RecipientTypeEnum; | ||
import lombok.Data; | ||
import lombok.NonNull; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
@Data | ||
@RequiredArgsConstructor | ||
public class ActInquiryRequest { | ||
@NonNull | ||
private String uid; | ||
@NonNull | ||
//Codice Fiscale Destinatario | ||
private String recipientTaxId; | ||
@NonNull | ||
private RecipientTypeEnum recipientType; | ||
|
||
private String iun; | ||
|
||
public ActInquiryRequest(@NonNull String uid, @NonNull String recipientTaxId, @NonNull RecipientTypeEnum recipientType, String iun) { | ||
this.uid = uid; | ||
this.recipientTaxId = recipientTaxId; | ||
this.recipientType = recipientType; | ||
this.iun = iun; | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/it/pn/frontend/e2e/model/radd/ActInquiry/ActInquiryResponse.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,14 @@ | ||
package it.pn.frontend.e2e.model.radd.ActInquiry; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class ActInquiryResponse { | ||
private boolean result; | ||
private ActInquiryResponseStatus actInquiryResponseStatus; | ||
|
||
public ActInquiryResponse(boolean result, ActInquiryResponseStatus actInquiryResponseStatus){ | ||
this.result = result; | ||
this.actInquiryResponseStatus = actInquiryResponseStatus; | ||
} | ||
} |
Oops, something went wrong.