com.prowidesoftware.swift.model.mx.dic.ATMSecurityScheme2Code Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ATMSecurityScheme2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "ATMSecurityScheme2Code")
@XmlEnum
public enum ATMSecurityScheme2Code {
/**
* Application key download protected by a share symmetric key.
*
*/
APPK,
/**
* Key download protected by asymmetric keys authenticated by a certificate.
*
*/
CERT,
/**
* Key download conform to the French ATM key download security scheme.
*
*/
FRAN,
/**
* Key download conform to the German ATM key download security scheme.
*
*/
DTCH,
/**
* Key download conform to the Luxemburg ATM key download security scheme.
*
*/
LUXG,
/**
* Manual key entry on the ATM.
*
*/
MANU,
/**
* Key download protected by asymmetric keys authenticated by a PKI (Public Key Infrastructure).
*
*/
PKIP,
/**
* Key download protected by asymmetric keys authenticated by a digital signature.
*
*/
SIGN;
public String value() {
return name();
}
public static ATMSecurityScheme2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy