commit 17c9189d3f80b995aa1df4dc8161fffd49877087 parent f15eeb78d2201a81e6b58d49f456b098e2be6739 Author: Marcello Stanisci <stanisci.m@gmail.com> Date: Tue, 14 Jan 2020 12:24:45 +0100 C53. Temporarily handling C52 and C53 with the same handler. Diffstat:
| M | sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt @@ -611,7 +611,10 @@ suspend fun ApplicationCall.ebicsweb() { val response = when (orderType) { "HTD" -> handleEbicsHtd() "HKD" -> handleEbicsHkd() + + /* Temporarily handling C52/C53 with same logic */ "C52" -> handleEbicsC52(requestObject.header) + "C53" -> handleEbicsC52(requestObject.header) else -> throw EbicsInvalidXmlError() }