1 | <?php |
||
20 | class HNVSK extends AbstractSegment |
||
21 | { |
||
22 | const NAME = 'HNVSK'; |
||
23 | const VERSION = 3; |
||
24 | |||
25 | const SECURITY_SUPPLIER_ROLE_ISS = 1; |
||
26 | const SECURITY_SUPPLIER_ROLE_CON = 3; |
||
27 | const SECURITY_SUPPLIER_ROLE_WIT = 4; |
||
28 | |||
29 | const COMPRESSION_NONE = 0; |
||
30 | const COMPRESSION_LZW = 1; |
||
31 | const COMPRESSION_COM = 2; |
||
32 | const COMPRESSION_LZSS = 3; |
||
33 | const COMPRESSION_LZHUFF = 4; |
||
34 | const COMPRESSION_ZIP = 5; |
||
35 | const COMPRESSION_GZIP = 6; |
||
36 | const COMPRESSION_BZIP2 = 7; |
||
37 | const COMPRESSION_NEGOTIATE = 999; |
||
38 | |||
39 | /** |
||
40 | * HNVSK constructor. |
||
41 | * @param int $segmentNumber |
||
42 | * @param string $bankCode |
||
43 | * @param string $userName |
||
44 | * @param int $systemId |
||
45 | * @param int $securitySupplierRole |
||
46 | * @param int $countryCode |
||
47 | * @param int $compression |
||
48 | * @param int $pinTanVersion |
||
49 | */ |
||
50 | 4 | public function __construct( |
|
76 | |||
77 | /** |
||
78 | * @return string |
||
79 | */ |
||
80 | public function getName() |
||
84 | } |
||
85 |