com.prowidesoftware.swift.model.mx.dic.Action1Code 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 Action1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="Action1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="SBTW"/>
* <enumeration value="RSTW"/>
* <enumeration value="RSBS"/>
* <enumeration value="ARDM"/>
* <enumeration value="ARCS"/>
* <enumeration value="ARES"/>
* <enumeration value="WAIT"/>
* <enumeration value="UPDT"/>
* <enumeration value="SBDS"/>
* <enumeration value="ARBA"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "Action1Code")
@XmlEnum
public enum Action1Code {
/**
* Request to submit a twin baseline.
*
*/
SBTW,
/**
* Request to resubmit a twin baseline.
*
*/
RSTW,
/**
* Request to resubmit a baseline.
*
*/
RSBS,
/**
* Request to accept or reject mismatched data set(s).
*
*/
ARDM,
/**
* Request to accept or reject a request for a change of status of the baseline.
*
*/
ARCS,
/**
* Request to accept or reject a request for an extension of the period of validity of the status of the baseline.
*
*/
ARES,
/**
* Request to wait until the baseline is established.
*
*/
WAIT,
/**
* Request to update and resend.
*
*/
UPDT,
/**
* Request to submit data set(s).
*
*/
SBDS,
/**
* Request to accept or reject a request for a baseline amendment.
*
*/
ARBA;
public String value() {
return name();
}
public static Action1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy