com.prowidesoftware.swift.model.mx.dic.AuthenticationMethod7Code 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 AuthenticationMethod7Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "AuthenticationMethod7Code")
@XmlEnum
public enum AuthenticationMethod7Code {
/**
* A token is used to verify an already performed authentication.
*
*/
TOKA,
/**
* Biometric authentication of the cardholder.
*
*/
BIOM,
/**
* Customer mobile device.
*
*/
MOBL,
/**
* Other customer authentication.
*
*/
OTHR,
/**
* Off-line PIN authentication (Personal Identification Number).
*
*/
FPIN,
/**
* On-line PIN authentication (Personal Identification Number).
*
*/
NPIN,
/**
* Authentication by a password.
*
*/
PSWD,
/**
* Electronic commerce transaction secured with the X.509 certificate of a customer.
*
*/
SCRT,
/**
* Channel-encrypted transaction.
*
*/
SCNL;
public String value() {
return name();
}
public static AuthenticationMethod7Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy