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

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

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

*

 * <simpleType name="RejectionReason27Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="ADEA"/>
 *     <enumeration value="LATE"/>
 *     <enumeration value="SAFE"/>
 *     <enumeration value="NRGM"/>
 *     <enumeration value="NRGN"/>
 *     <enumeration value="OTHR"/>
 *     <enumeration value="REFE"/>
 *     <enumeration value="INVM"/>
 *     <enumeration value="INVL"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "RejectionReason27Code") @XmlEnum public enum RejectionReason27Code { /** * Transaction/instruction received after the account servicer's specified deadline. * */ ADEA, /** * Received after market deadline. * */ LATE, /** * Unrecognised or invalid message sender's safekeeping account. * */ SAFE, /** * More than one instruction match the criteria. * */ NRGM, /** * Instruction could not be found. * */ NRGN, /** * Other. See Narrative. * */ OTHR, /** * Instruction has a reference identical to another previously received instruction. * */ REFE, /** * Invalid or unrecognized modification request. * */ INVM, /** * Invalid or unrecognized link. * */ INVL; public String value() { return name(); } public static RejectionReason27Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy