com.prowidesoftware.swift.model.mx.dic.TerminalManagementActionResult5Code 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 TerminalManagementActionResult5Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "TerminalManagementActionResult5Code")
@XmlEnum
public enum TerminalManagementActionResult5Code {
/**
* Access is denied while performing the action.
*
*/
ACCD,
/**
* Problem to connect while performing the action.
*
*/
CNTE,
/**
* Data transferred has a wrong format.
*
*/
FMTE,
/**
* Content of the data is invalid.
*
*/
INVC,
/**
* Data transferred has a wrong length.
*
*/
LENE,
/**
* Memory to store the date exceeded.
*
*/
OVER,
/**
* Data set to be maintained is missing.
*
*/
MISS,
/**
* Action is not supported.
*
*/
NSUP,
/**
* Data transferred has a wrong digital signature.
*
*/
SIGE,
/**
* Action was performed but some warnings arose.
*
*/
WARN,
/**
* Data transferred has a wrong syntax.
*
*/
SYNE,
/**
* Timeout expired during the data transfer.
*
*/
TIMO,
/**
* Data set identification invalid.
*
*/
UKDT,
/**
* Cryptographic key reference used for the data signature is not valid.
*
*/
UKRF,
/**
* Delegation Proof transmitted by the delegated TMS is not the one expected.
*
*/
INDP,
/**
* One action of the AcceptorManagementPlan refers to an update unauthorized by the delegation.
*
*/
IDMP,
/**
* The content analysis of the AcceptorConfigurationUpdate reveals unexpected parameters.
*
*/
DPRU,
/**
* This code value means all TerminalManagementActionResultCode except "Any Error" and "Unlisted Error".
*
*/
AERR,
/**
* Error in communication once the connection has been established.
*
*/
CMER,
/**
* Any error that is not defined by a code value inside the TerminalManagementActionResultCode.
*
*/
ULER,
/**
* Action was successfully performed.
*
*/
SUCC;
public String value() {
return name();
}
public static TerminalManagementActionResult5Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy