commit f15eeb78d2201a81e6b58d49f456b098e2be6739 parent c023fa684b4f469c4f25bf12107e1e98161c91df Author: Marcello Stanisci <stanisci.m@gmail.com> Date: Sun, 12 Jan 2020 14:17:28 +0100 offering STA Diffstat:
| M | sandbox/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 @@ -385,6 +385,11 @@ fun handleEbicsHtd(): ByteArray { this.description = "foo4" this.orderType = "VMK" this.transferType = "Download" + }, + EbicsTypes.AuthOrderInfoType().apply { + this.description = "foo5" + this.orderType = "STA" + this.transferType = "Download" } ) } @@ -396,7 +401,7 @@ fun handleEbicsHtd(): ByteArray { } this.permissionList = listOf( EbicsTypes.UserPermission().apply { - this.orderTypes = "C53 C52 CCC VMK" + this.orderTypes = "C53 C52 CCC VMK STA" } ) }