com.prowidesoftware.swift.model.mx.dic.InstructionProcessingStatus7Choice 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 = "InstructionProcessingStatus7Choice", propOrder = {
"canc",
"accptd",
"rjctd",
"pdg",
"dfltActn",
"stgInstr",
"prtrySts"
})
public class InstructionProcessingStatus7Choice {
@XmlElement(name = "Canc")
protected CancelledStatus3Choice canc;
@XmlElement(name = "Accptd")
protected AcceptedStatus1Choice accptd;
@XmlElement(name = "Rjctd")
protected RejectedStatus1Choice rjctd;
@XmlElement(name = "Pdg")
protected PendingStatus1Choice pdg;
@XmlElement(name = "DfltActn")
protected NoSpecifiedReason1 dfltActn;
@XmlElement(name = "StgInstr")
protected NoSpecifiedReason1 stgInstr;
@XmlElement(name = "PrtrySts")
protected ProprietaryStatusAndReason1 prtrySts;
/**
* Gets the value of the canc property.
*
* @return
* possible object is
* {@link CancelledStatus3Choice }
*
*/
public CancelledStatus3Choice getCanc() {
return canc;
}
/**
* Sets the value of the canc property.
*
* @param value
* allowed object is
* {@link CancelledStatus3Choice }
*
*/
public InstructionProcessingStatus7Choice setCanc(CancelledStatus3Choice value) {
this.canc = value;
return this;
}
/**
* Gets the value of the accptd property.
*
* @return
* possible object is
* {@link AcceptedStatus1Choice }
*
*/
public AcceptedStatus1Choice getAccptd() {
return accptd;
}
/**
* Sets the value of the accptd property.
*
* @param value
* allowed object is
* {@link AcceptedStatus1Choice }
*
*/
public InstructionProcessingStatus7Choice setAccptd(AcceptedStatus1Choice value) {
this.accptd = value;
return this;
}
/**
* Gets the value of the rjctd property.
*
* @return
* possible object is
* {@link RejectedStatus1Choice }
*
*/
public RejectedStatus1Choice getRjctd() {
return rjctd;
}
/**
* Sets the value of the rjctd property.
*
* @param value
* allowed object is
* {@link RejectedStatus1Choice }
*
*/
public InstructionProcessingStatus7Choice setRjctd(RejectedStatus1Choice value) {
this.rjctd = value;
return this;
}
/**
* Gets the value of the pdg property.
*
* @return
* possible object is
* {@link PendingStatus1Choice }
*
*/
public PendingStatus1Choice getPdg() {
return pdg;
}
/**
* Sets the value of the pdg property.
*
* @param value
* allowed object is
* {@link PendingStatus1Choice }
*
*/
public InstructionProcessingStatus7Choice setPdg(PendingStatus1Choice 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 InstructionProcessingStatus7Choice 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 InstructionProcessingStatus7Choice setStgInstr(NoSpecifiedReason1 value) {
this.stgInstr = value;
return this;
}
/**
* Gets the value of the prtrySts property.
*
* @return
* possible object is
* {@link ProprietaryStatusAndReason1 }
*
*/
public ProprietaryStatusAndReason1 getPrtrySts() {
return prtrySts;
}
/**
* Sets the value of the prtrySts property.
*
* @param value
* allowed object is
* {@link ProprietaryStatusAndReason1 }
*
*/
public InstructionProcessingStatus7Choice setPrtrySts(ProprietaryStatusAndReason1 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