com.prowidesoftware.swift.model.mx.dic.Status9Choice 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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 = "Status9Choice", propOrder = {
"prtry",
"mtchgSts",
"ifrrdMtchgSts",
"sttlmSts",
"instrPrcgSts"
})
public class Status9Choice {
@XmlElement(name = "Prtry")
protected ProprietaryStatusAndReason1 prtry;
@XmlElement(name = "MtchgSts")
protected MatchingStatus7Choice mtchgSts;
@XmlElement(name = "IfrrdMtchgSts")
protected MatchingStatus7Choice ifrrdMtchgSts;
@XmlElement(name = "SttlmSts")
protected SettlementStatus7Choice sttlmSts;
@XmlElement(name = "InstrPrcgSts")
protected InstructionProcessingStatus10Choice instrPrcgSts;
/**
* Gets the value of the prtry property.
*
* @return
* possible object is
* {@link ProprietaryStatusAndReason1 }
*
*/
public ProprietaryStatusAndReason1 getPrtry() {
return prtry;
}
/**
* Sets the value of the prtry property.
*
* @param value
* allowed object is
* {@link ProprietaryStatusAndReason1 }
*
*/
public Status9Choice setPrtry(ProprietaryStatusAndReason1 value) {
this.prtry = value;
return this;
}
/**
* Gets the value of the mtchgSts property.
*
* @return
* possible object is
* {@link MatchingStatus7Choice }
*
*/
public MatchingStatus7Choice getMtchgSts() {
return mtchgSts;
}
/**
* Sets the value of the mtchgSts property.
*
* @param value
* allowed object is
* {@link MatchingStatus7Choice }
*
*/
public Status9Choice setMtchgSts(MatchingStatus7Choice value) {
this.mtchgSts = value;
return this;
}
/**
* Gets the value of the ifrrdMtchgSts property.
*
* @return
* possible object is
* {@link MatchingStatus7Choice }
*
*/
public MatchingStatus7Choice getIfrrdMtchgSts() {
return ifrrdMtchgSts;
}
/**
* Sets the value of the ifrrdMtchgSts property.
*
* @param value
* allowed object is
* {@link MatchingStatus7Choice }
*
*/
public Status9Choice setIfrrdMtchgSts(MatchingStatus7Choice value) {
this.ifrrdMtchgSts = value;
return this;
}
/**
* Gets the value of the sttlmSts property.
*
* @return
* possible object is
* {@link SettlementStatus7Choice }
*
*/
public SettlementStatus7Choice getSttlmSts() {
return sttlmSts;
}
/**
* Sets the value of the sttlmSts property.
*
* @param value
* allowed object is
* {@link SettlementStatus7Choice }
*
*/
public Status9Choice setSttlmSts(SettlementStatus7Choice value) {
this.sttlmSts = value;
return this;
}
/**
* Gets the value of the instrPrcgSts property.
*
* @return
* possible object is
* {@link InstructionProcessingStatus10Choice }
*
*/
public InstructionProcessingStatus10Choice getInstrPrcgSts() {
return instrPrcgSts;
}
/**
* Sets the value of the instrPrcgSts property.
*
* @param value
* allowed object is
* {@link InstructionProcessingStatus10Choice }
*
*/
public Status9Choice setInstrPrcgSts(InstructionProcessingStatus10Choice 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