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

com.prowidesoftware.swift.model.mx.dic.AuthenticationMethod1Code 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 AuthenticationMethod1Code. * *

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

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "AuthenticationMethod1Code") @XmlEnum public enum AuthenticationMethod1Code { /** * Authentication method is performed unknown. * */ UKNW, /** * Authentication bypassed by the merchant. * */ BYPS, /** * On-line PIN authentication (Personal Identification Number). * */ NPIN, /** * Off-line PIN authentication (Personal Identification Number). * */ FPIN, /** * Electronic signature capture (handwritten signature). * */ CPSG, /** * Handwritten paper signature. * */ PPSG, /** * Manual verification, for example passport or drivers license. * */ MANU, /** * Merchant-related authentication. * */ MERC, /** * Electronic commerce transaction secured with the X.509 certificate of a customer. * */ SCRT, /** * Secure electronic transaction without cardholder certificate. * */ SNCT, /** * Channel-encrypted transaction. * */ SCNL; public String value() { return name(); } public static AuthenticationMethod1Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy