com.prowidesoftware.swift.model.mx.dic.AuthenticationMethod3Code 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 AuthenticationMethod3Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "AuthenticationMethod3Code")
@XmlEnum
public enum AuthenticationMethod3Code {
/**
* On-line PIN authentication (Personal Identification Number).
*
*/
NPIN,
/**
* Handwritten paper signature.
*
*/
PPSG,
/**
* Authentication by a password.
*
*/
PSWD,
/**
* Electronic commerce transaction secured with the X.509 certificate of a customer.
*
*/
SCRT,
/**
* Channel-encrypted transaction.
*
*/
SCNL,
/**
* Secure electronic transaction without cardholder certificate.
*
*/
SNCT,
/**
* Electronic signature capture (handwritten signature).
*
*/
CPSG,
/**
* Cardholder billing address verification.
*
*/
ADDB,
/**
* Biometric authentication of the cardholder.
*
*/
BIOM,
/**
* Cardholder data provided for verification, for instance social security number, driver license number, passport number.
*
*/
CDHI,
/**
* Verification of a cryptogram generated by a chip card or another device, for instance ARQC (Authorisation Request Cryptogram).
*
*/
CRYP,
/**
* Verification of Card Security Code.
*
*/
CSCV,
/**
* Authentication based on statistical cardholder behaviour.
*
*/
PSVE,
/**
* Authentication performed during a secure electronic commerce transaction.
*
*/
CSEC,
/**
* Cardholder shipping address verification.
*
*/
ADDS,
/**
* Cryptogram generated by the token requestor or a customer device to validate the authorised use of a token.
*
*/
TOKN;
public String value() {
return name();
}
public static AuthenticationMethod3Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy