Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(mojaloop/#2801): update sequence diagrams to handle negative validation fulfil #385

Merged
merged 8 commits into from
Aug 19, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,21 @@ group Bulk Processing Handler Consume
<color #red>throw</color> ErrorHandler.Factory.createFSPIOPError(INTERNAL_SERVER_ERROR)
end note
end
else bulkTransferInfo.bulkTransferState IN ['ABORTING']
alt action == 'bulk-abort'
note right of BULK_PROC_HANDLER #lightgrey
criteriaState = 'ABORTING'
processingState = 'FULFIL_INVALID'
completedBulkState = 'REJECTED'
incompleteBulkState = 'ABORTING'
errorCode = payload.errorInformation.errorCode
errorDescription = payload.errorInformation.errorDescription
end note
else all other actions
note right of BULK_PROC_HANDLER #lightgrey
<color #red>throw</color> ErrorHandler.Factory.createFSPIOPError(INTERNAL_SERVER_ERROR)
end note
end
else all other ['PENDING_INVALID', 'COMPLETED', 'REJECTED', 'INVALID']
note right of BULK_PROC_HANDLER #lightgrey
<color #red>throw</color> ErrorHandler.Factory.createFSPIOPError(INTERNAL_SERVER_ERROR)
Expand Down
Loading