
com.prowidesoftware.swift.model.mx.dic.ATMSecurityScheme2Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ATMSecurityScheme2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="ATMSecurityScheme2Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="APPK"/>
* <enumeration value="CERT"/>
* <enumeration value="FRAN"/>
* <enumeration value="DTCH"/>
* <enumeration value="LUXG"/>
* <enumeration value="MANU"/>
* <enumeration value="PKIP"/>
* <enumeration value="SIGN"/>
* </restriction>
* </simpleType>
*
*
*/
@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