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

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

There is a newer version: SRU2024-10.2.6
Show newest version

package com.prowidesoftware.swift.model.mx.dic;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ATMCommand1Code. * *

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

*

 * <simpleType name="ATMCommand1Code">
 *   <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="SNDM"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ATMCommand1Code") @XmlEnum public enum ATMCommand1Code { /** * 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, /** * Send a specific message to initiate a process. * */ SNDM; public String value() { return name(); } public static ATMCommand1Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy