-
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 #287 from pagopa/PG-19-gestire-stato-UNAUTHORIZED-…
…risposta-PATCH-eCommerce PG-19 updated the status list in response to eCommerce
- Loading branch information
Showing
1 changed file
with
14 additions
and
7 deletions.
There are no files selected for viewing
21 changes: 14 additions & 7 deletions
21
src/main/java/it/pagopa/pm/gateway/dto/transaction/TransactionStatusEnum.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,15 +1,22 @@ | ||
package it.pagopa.pm.gateway.dto.transaction; | ||
|
||
public enum TransactionStatusEnum { | ||
ACTIVATION_REQUESTED, | ||
ACTIVATED, | ||
AUTHORIZATION_REQUESTED, | ||
AUTHORIZED, | ||
AUTHORIZATION_FAILED, | ||
AUTHORIZATION_COMPLETED, | ||
CLOSED, | ||
CLOSURE_FAILED, | ||
NOTIFIED, | ||
NOTIFIED_FAILED, | ||
CLOSURE_ERROR, | ||
NOTIFIED_OK, | ||
NOTIFIED_KO, | ||
NOTIFICATION_ERROR, | ||
NOTIFICATION_REQUESTED, | ||
EXPIRED, | ||
REFUNDED | ||
REFUNDED, | ||
CANCELED, | ||
EXPIRED_NOT_AUTHORIZED, | ||
UNAUTHORIZED, | ||
REFUND_ERROR, | ||
REFUND_REQUESTED, | ||
CANCELLATION_REQUESTED, | ||
CANCELLATION_EXPIRED | ||
} |