
com.prowidesoftware.swift.model.mx.dic.ATMCommand2Code 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 ATMCommand2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="ATMCommand2Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ABAL"/>
* <enumeration value="ASTS"/>
* <enumeration value="CFGT"/>
* <enumeration value="CCNT"/>
* <enumeration value="DISC"/>
* <enumeration value="KACT"/>
* <enumeration value="KDAC"/>
* <enumeration value="KDWL"/>
* <enumeration value="KRMV"/>
* <enumeration value="SCFU"/>
* <enumeration value="SSCU"/>
* <enumeration value="SSTU"/>
* <enumeration value="SNDM"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "ATMCommand2Code")
@XmlEnum
public enum ATMCommand2Code {
/**
* Provide the ATM counters, resetting those that are applicable.
*
*/
ABAL,
/**
* Status of the ATM required by the ATM manager.
*
*/
ASTS,
/**
* Update the ATM configuration parameters.
*
*/
CFGT,
/**
* Request the value of the ATM counters.
*
*/
CCNT,
/**
* Perform a disconnection followed by a reconnection.
*
*/
DISC,
/**
* Activate cryptographic keys.
*
*/
KACT,
/**
* Deactivate cryptographic keys.
*
*/
KDAC,
/**
* Start a cryptographic key download.
*
*/
KDWL,
/**
* Remove cryptographic keys.
*
*/
KRMV,
/**
* Update the configuration of the hardware security module on the ATM.
*
*/
SCFU,
/**
* Update the security scheme of the hardware security module on the ATM.
*
*/
SSCU,
/**
* Update the status of the hardware security module on the ATM.
*
*/
SSTU,
/**
* Send a specific message to initiate a process.
*
*/
SNDM;
public String value() {
return name();
}
public static ATMCommand2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy