com.prowidesoftware.swift.model.mx.dic.InstructionProcessingStatus21Choice 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 between different instruction processing statuses.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InstructionProcessingStatus21Choice", propOrder = {
"canc",
"accptdForFrthrPrcg",
"rjctd",
"pdg",
"dfltActn",
"stgInstr",
"prtrySts"
})
public class InstructionProcessingStatus21Choice {
@XmlElement(name = "Canc")
protected CancelledStatus9Choice canc;
@XmlElement(name = "AccptdForFrthrPrcg")
protected AcceptedStatus5Choice accptdForFrthrPrcg;
@XmlElement(name = "Rjctd")
protected RejectedStatus16Choice rjctd;
@XmlElement(name = "Pdg")
protected PendingStatus35Choice pdg;
@XmlElement(name = "DfltActn")
protected NoSpecifiedReason1 dfltActn;
@XmlElement(name = "StgInstr")
protected NoSpecifiedReason1 stgInstr;
@XmlElement(name = "PrtrySts")
protected ProprietaryStatusAndReason2 prtrySts;
/**
* Gets the value of the canc property.
*
* @return
* possible object is
* {@link CancelledStatus9Choice }
*
*/
public CancelledStatus9Choice getCanc() {
return canc;
}
/**
* Sets the value of the canc property.
*
* @param value
* allowed object is
* {@link CancelledStatus9Choice }
*
*/
public InstructionProcessingStatus21Choice setCanc(CancelledStatus9Choice value) {
this.canc = value;
return this;
}
/**
* Gets the value of the accptdForFrthrPrcg property.
*
* @return
* possible object is
* {@link AcceptedStatus5Choice }
*
*/
public AcceptedStatus5Choice getAccptdForFrthrPrcg() {
return accptdForFrthrPrcg;
}
/**
* Sets the value of the accptdForFrthrPrcg property.
*
* @param value
* allowed object is
* {@link AcceptedStatus5Choice }
*
*/
public InstructionProcessingStatus21Choice setAccptdForFrthrPrcg(AcceptedStatus5Choice value) {
this.accptdForFrthrPrcg = value;
return this;
}
/**
* Gets the value of the rjctd property.
*
* @return
* possible object is
* {@link RejectedStatus16Choice }
*
*/
public RejectedStatus16Choice getRjctd() {
return rjctd;
}
/**
* Sets the value of the rjctd property.
*
* @param value
* allowed object is
* {@link RejectedStatus16Choice }
*
*/
public InstructionProcessingStatus21Choice setRjctd(RejectedStatus16Choice value) {
this.rjctd = value;
return this;
}
/**
* Gets the value of the pdg property.
*
* @return
* possible object is
* {@link PendingStatus35Choice }
*
*/
public PendingStatus35Choice getPdg() {
return pdg;
}
/**
* Sets the value of the pdg property.
*
* @param value
* allowed object is
* {@link PendingStatus35Choice }
*
*/
public InstructionProcessingStatus21Choice setPdg(PendingStatus35Choice value) {
this.pdg = value;
return this;
}
/**
* Gets the value of the dfltActn property.
*
* @return
* possible object is
* {@link NoSpecifiedReason1 }
*
*/
public NoSpecifiedReason1 getDfltActn() {
return dfltActn;
}
/**
* Sets the value of the dfltActn property.
*
* @param value
* allowed object is
* {@link NoSpecifiedReason1 }
*
*/
public InstructionProcessingStatus21Choice setDfltActn(NoSpecifiedReason1 value) {
this.dfltActn = value;
return this;
}
/**
* Gets the value of the stgInstr property.
*
* @return
* possible object is
* {@link NoSpecifiedReason1 }
*
*/
public NoSpecifiedReason1 getStgInstr() {
return stgInstr;
}
/**
* Sets the value of the stgInstr property.
*
* @param value
* allowed object is
* {@link NoSpecifiedReason1 }
*
*/
public InstructionProcessingStatus21Choice setStgInstr(NoSpecifiedReason1 value) {
this.stgInstr = value;
return this;
}
/**
* Gets the value of the prtrySts property.
*
* @return
* possible object is
* {@link ProprietaryStatusAndReason2 }
*
*/
public ProprietaryStatusAndReason2 getPrtrySts() {
return prtrySts;
}
/**
* Sets the value of the prtrySts property.
*
* @param value
* allowed object is
* {@link ProprietaryStatusAndReason2 }
*
*/
public InstructionProcessingStatus21Choice setPrtrySts(ProprietaryStatusAndReason2 value) {
this.prtrySts = 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