
com.prowidesoftware.swift.model.mx.dic.PendingStatus1Code 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 PendingStatus1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="PendingStatus1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ACPD"/>
* <enumeration value="VALD"/>
* <enumeration value="MATD"/>
* <enumeration value="AUTD"/>
* <enumeration value="INVD"/>
* <enumeration value="UMAC"/>
* <enumeration value="STLE"/>
* <enumeration value="STLM"/>
* <enumeration value="SSPD"/>
* <enumeration value="PCAN"/>
* <enumeration value="PSTL"/>
* <enumeration value="PFST"/>
* <enumeration value="SMLR"/>
* <enumeration value="RMLR"/>
* <enumeration value="SRBL"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "PendingStatus1Code")
@XmlEnum
public enum PendingStatus1Code {
/**
* Transaction has been accepted by the clearing agent.
*
*/
ACPD,
/**
* Transaction has been validated by the clearing agent.
*
*/
VALD,
/**
* Transaction has been matched with a corresponding transaction by the clearing agent.
*
*/
MATD,
/**
* Transaction has been authorised by the transaction administrator or authorised party.
*
*/
AUTD,
/**
* Transaction is invalid.
*
*/
INVD,
/**
* Clearing agent attempted to match the transaction with a corresponding transaction but failed.
*
*/
UMAC,
/**
* Transaction is eligible for future settlement.
*
*/
STLE,
/**
* Transaction is eligible for immediate settlement.
*
*/
STLM,
/**
* Transaction has been suspended by the clearing agent.
*
*/
SSPD,
/**
* Clearing agent has received a cancellation request for the transaction, and needs either a matching request for cancellation from the counterparty or a confirmation from an authorised party.
*
*/
PCAN,
/**
* Transaction is eligible for settlement, but is pending.
*
*/
PSTL,
/**
* Transaction eligible for immediate settlement, has failed to settle.
*
*/
PFST,
/**
* Transaction causes the 'Sender multilateral limit' to be exceeded and cannot currently be processed.
*
*/
SMLR,
/**
* Transaction causes the 'Receiver multilateral limit' to be exceeded and cannot currently be processed.
*
*/
RMLR,
/**
* Transaction causes the bilateral limit fixed between Sender and Receiver to be exceeded and cannot currently be processed.
*
*/
SRBL;
public String value() {
return name();
}
public static PendingStatus1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy