com.prowidesoftware.swift.model.mx.dic.Status11Choice 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 = "Status11Choice", propOrder = {
"prtry",
"mtchgSts",
"ifrrdMtchgSts",
"sttlmSts",
"instrPrcgSts"
})
public class Status11Choice {
@XmlElement(name = "Prtry")
protected ProprietaryStatusAndReason2 prtry;
@XmlElement(name = "MtchgSts")
protected MatchingStatus18Choice mtchgSts;
@XmlElement(name = "IfrrdMtchgSts")
protected MatchingStatus18Choice ifrrdMtchgSts;
@XmlElement(name = "SttlmSts")
protected SettlementStatus13Choice sttlmSts;
@XmlElement(name = "InstrPrcgSts")
protected InstructionProcessingStatus11Choice 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 Status11Choice setPrtry(ProprietaryStatusAndReason2 value) {
this.prtry = value;
return this;
}
/**
* Gets the value of the mtchgSts property.
*
* @return
* possible object is
* {@link MatchingStatus18Choice }
*
*/
public MatchingStatus18Choice getMtchgSts() {
return mtchgSts;
}
/**
* Sets the value of the mtchgSts property.
*
* @param value
* allowed object is
* {@link MatchingStatus18Choice }
*
*/
public Status11Choice setMtchgSts(MatchingStatus18Choice value) {
this.mtchgSts = value;
return this;
}
/**
* Gets the value of the ifrrdMtchgSts property.
*
* @return
* possible object is
* {@link MatchingStatus18Choice }
*
*/
public MatchingStatus18Choice getIfrrdMtchgSts() {
return ifrrdMtchgSts;
}
/**
* Sets the value of the ifrrdMtchgSts property.
*
* @param value
* allowed object is
* {@link MatchingStatus18Choice }
*
*/
public Status11Choice setIfrrdMtchgSts(MatchingStatus18Choice value) {
this.ifrrdMtchgSts = value;
return this;
}
/**
* Gets the value of the sttlmSts property.
*
* @return
* possible object is
* {@link SettlementStatus13Choice }
*
*/
public SettlementStatus13Choice getSttlmSts() {
return sttlmSts;
}
/**
* Sets the value of the sttlmSts property.
*
* @param value
* allowed object is
* {@link SettlementStatus13Choice }
*
*/
public Status11Choice setSttlmSts(SettlementStatus13Choice value) {
this.sttlmSts = value;
return this;
}
/**
* Gets the value of the instrPrcgSts property.
*
* @return
* possible object is
* {@link InstructionProcessingStatus11Choice }
*
*/
public InstructionProcessingStatus11Choice getInstrPrcgSts() {
return instrPrcgSts;
}
/**
* Sets the value of the instrPrcgSts property.
*
* @param value
* allowed object is
* {@link InstructionProcessingStatus11Choice }
*
*/
public Status11Choice setInstrPrcgSts(InstructionProcessingStatus11Choice 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