com.prowidesoftware.swift.model.mx.dic.RejectReason2Code 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 RejectReason2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "RejectReason2Code")
@XmlEnum
public enum RejectReason2Code {
/**
* Not possible to process the message, for instance the security module is unavailable, the hardware is unavailable, or there is a problem of resource.
*
*/
UNPR,
/**
* Invalid envelope of the message.
*
*/
IMSG,
/**
* Invalid message: At least one of the data element or data structure is not present, the format, or the content of one data element or one data structure is not correct.
*
*/
PARS,
/**
* Security error (for example an invalid key or an incorrect MAC value).
*
*/
SECU,
/**
* Invalid identification data for the sender.
*
*/
INTP,
/**
* Invalid identification data for the the receiver.
*
*/
RCPP,
/**
* Version of the protocol couldn't be supported by the recipient.
*
*/
VERS,
/**
* Type of message the recipient receives is unknow or unsupported.
*
*/
MSGT;
public String value() {
return name();
}
public static RejectReason2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy