libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit c023fa684b4f469c4f25bf12107e1e98161c91df
parent 086e593e2f009dd9a146a5d333803ae30739219a
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Sun, 12 Jan 2020 14:12:39 +0100

offering VMK

Diffstat:
Msandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt @@ -380,6 +380,11 @@ fun handleEbicsHtd(): ByteArray { this.description = "foo3" this.orderType = "CCC" this.transferType = "Upload" + }, + EbicsTypes.AuthOrderInfoType().apply { + this.description = "foo4" + this.orderType = "VMK" + this.transferType = "Download" } ) } @@ -391,7 +396,7 @@ fun handleEbicsHtd(): ByteArray { } this.permissionList = listOf( EbicsTypes.UserPermission().apply { - this.orderTypes = "C53 C52 CCC" + this.orderTypes = "C53 C52 CCC VMK" } ) }