com.prowidesoftware.swift.model.mx.dic.RejectionReason3Code 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
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RejectionReason3Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="RejectionReason3Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="UKWN"/>
* <enumeration value="EXCL"/>
* <enumeration value="EXLI"/>
* <enumeration value="TOLA"/>
* <enumeration value="INPR"/>
* <enumeration value="NAUT"/>
* <enumeration value="NMAT"/>
* <enumeration value="NINS"/>
* <enumeration value="NINV"/>
* <enumeration value="PASS"/>
* <enumeration value="INCR"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RejectionReason3Code")
@XmlEnum
public enum RejectionReason3Code {
/**
* Financial instrument's symbol has not been recognized.
*
*/
UKWN,
/**
* Exchange on which the financial instrument is traded is closed.
*
*/
EXCL,
/**
* Countervalue of the order exceeds the allowed trading limit or quote exceeds limit.
*
*/
EXLI,
/**
* Request has exceeded the allowed time frame.
*
*/
TOLA,
/**
* Price does not comply with the financial instrument's characteristics.
*
*/
INPR,
/**
* Permission to be processed is not granted.
*
*/
NAUT,
/**
* No counterparty order has been identified.
*
*/
NMAT,
/**
* Referred instrument does not exist in combination with the mentioned market.
*
*/
NINS,
/**
* Requested financial instrument is not available.
*
*/
NINV,
/**
* Counterparty is not interested in the transaction.
*
*/
PASS,
/**
* Requestor has no insufficient credit to make the trade.
*
*/
INCR;
public String value() {
return name();
}
public static RejectionReason3Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy