com.prowidesoftware.swift.model.mx.dic.Status4Choice 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.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Choice of status.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Status4Choice", propOrder = {
"prtry",
"mtchgSts",
"ifrrdMtchgSts",
"sttlmSts",
"instrPrcgSts"
})
public class Status4Choice {
@XmlElement(name = "Prtry")
protected ProprietaryStatusAndReason2 prtry;
@XmlElement(name = "MtchgSts")
protected MatchingStatus6Choice mtchgSts;
@XmlElement(name = "IfrrdMtchgSts")
protected MatchingStatus6Choice ifrrdMtchgSts;
@XmlElement(name = "SttlmSts")
protected SettlementStatus4Choice sttlmSts;
@XmlElement(name = "InstrPrcgSts")
protected InstructionProcessingStatus6Choice instrPrcgSts;
/**
* Gets the value of the prtry property.
*
* @return
* possible object is
* {@link ProprietaryStatusAndReason2 }
*
*/
public ProprietaryStatusAndReason2 getPrtry() {
return prtry;
}
/**
* Sets the value of the prtry property.
*
* @param value
* allowed object is
* {@link ProprietaryStatusAndReason2 }
*
*/
public Status4Choice setPrtry(ProprietaryStatusAndReason2 value) {
this.prtry = value;
return this;
}
/**
* Gets the value of the mtchgSts property.
*
* @return
* possible object is
* {@link MatchingStatus6Choice }
*
*/
public MatchingStatus6Choice getMtchgSts() {
return mtchgSts;
}
/**
* Sets the value of the mtchgSts property.
*
* @param value
* allowed object is
* {@link MatchingStatus6Choice }
*
*/
public Status4Choice setMtchgSts(MatchingStatus6Choice value) {
this.mtchgSts = value;
return this;
}
/**
* Gets the value of the ifrrdMtchgSts property.
*
* @return
* possible object is
* {@link MatchingStatus6Choice }
*
*/
public MatchingStatus6Choice getIfrrdMtchgSts() {
return ifrrdMtchgSts;
}
/**
* Sets the value of the ifrrdMtchgSts property.
*
* @param value
* allowed object is
* {@link MatchingStatus6Choice }
*
*/
public Status4Choice setIfrrdMtchgSts(MatchingStatus6Choice value) {
this.ifrrdMtchgSts = value;
return this;
}
/**
* Gets the value of the sttlmSts property.
*
* @return
* possible object is
* {@link SettlementStatus4Choice }
*
*/
public SettlementStatus4Choice getSttlmSts() {
return sttlmSts;
}
/**
* Sets the value of the sttlmSts property.
*
* @param value
* allowed object is
* {@link SettlementStatus4Choice }
*
*/
public Status4Choice setSttlmSts(SettlementStatus4Choice value) {
this.sttlmSts = value;
return this;
}
/**
* Gets the value of the instrPrcgSts property.
*
* @return
* possible object is
* {@link InstructionProcessingStatus6Choice }
*
*/
public InstructionProcessingStatus6Choice getInstrPrcgSts() {
return instrPrcgSts;
}
/**
* Sets the value of the instrPrcgSts property.
*
* @param value
* allowed object is
* {@link InstructionProcessingStatus6Choice }
*
*/
public Status4Choice setInstrPrcgSts(InstructionProcessingStatus6Choice value) {
this.instrPrcgSts = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy