All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mx.dic.AuthenticationMethod5Code Maven / Gradle / Ivy

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 AuthenticationMethod5Code. * *

The following schema fragment specifies the expected content contained within this class. *

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "AuthenticationMethod5Code") @XmlEnum public enum AuthenticationMethod5Code { /** * 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, /** * Verification or authentication related to the use of a payment token, for instance the validation of the authorised use of a token. * */ TOKP; public String value() { return name(); } public static AuthenticationMethod5Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy