summaryrefslogtreecommitdiff
path: root/ebics/src/main/kotlin/ebics_hev/EbicsMessages.kt
blob: 506ba9fa4cad3dff3280c02e6b6df48b11e2acb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * This file is part of LibEuFin.
 * Copyright (C) 2019 Stanisci and Dold.

 * LibEuFin is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation; either version 3, or
 * (at your option) any later version.

 * LibEuFin is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Affero General
 * Public License for more details.

 * You should have received a copy of the GNU Affero General Public
 * License along with LibEuFin; see the file COPYING.  If not, see
 * <http://www.gnu.org/licenses/>
 */

package tech.libeufin.ebics.ebics_hev

import java.util.*
import javax.xml.bind.annotation.*
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter

@XmlAccessorType(XmlAccessType.NONE)
@XmlType(
    name = "HEVRequestDataType"
)
@XmlRootElement(name = "ebicsHEVRequest")
class HEVRequest{
    @get:XmlElement(name = "HostID", required = true)
    lateinit var hostId: String
}

@XmlAccessorType(XmlAccessType.NONE)
@XmlType(
    name = "HEVResponseDataType",
    propOrder = ["systemReturnCode", "versionNumber", "any"]
)
@XmlRootElement(name = "ebicsHEVResponse")
class HEVResponse {
    @get:XmlElement(name = "SystemReturnCode", required = true)
    lateinit var systemReturnCode: SystemReturnCodeType

    @get:XmlElement(name = "VersionNumber", namespace = "http://www.ebics.org/H000")
    var versionNumber: List<VersionNumber> = LinkedList()

    @get:XmlAnyElement(lax = true)
    var any: List<Any>? = null

    @XmlAccessorType(XmlAccessType.NONE)
    class VersionNumber {
        @get:XmlValue
        @get:XmlJavaTypeAdapter(CollapsedStringAdapter::class)
        lateinit var value: String

        @get:XmlAttribute(name = "ProtocolVersion", required = true)
        @get:XmlJavaTypeAdapter(CollapsedStringAdapter::class)
        lateinit var protocolVersion: String

        companion object {
            fun create(protocolVersion: String, versionNumber: String): VersionNumber {
                return VersionNumber().apply {
                    this.protocolVersion = protocolVersion
                    this.value = versionNumber
                }
            }
        }
    }
}


@XmlAccessorType(XmlAccessType.NONE)
@XmlType(
    name = "SystemReturnCodeType",
    propOrder = [
        "returnCode",
        "reportText"
    ]
)
class SystemReturnCodeType {
    @get:XmlElement(name = "ReturnCode", required = true)
    @get:XmlJavaTypeAdapter(CollapsedStringAdapter::class)
    lateinit var returnCode: String

    @get:XmlElement(name = "ReportText", required = true)
    @get:XmlJavaTypeAdapter(NormalizedStringAdapter::class)
    lateinit var reportText: String
}