com.prowidesoftware.swift.model.mx.dic.ProcessingStatus72Choice 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;
/**
* Specifies the status and the reason of the operation.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProcessingStatus72Choice", propOrder = {
"ackdAccptd",
"pdgPrcg",
"rjctd",
"cmpltd",
"prtry"
})
public class ProcessingStatus72Choice {
@XmlElement(name = "AckdAccptd")
protected Reason4 ackdAccptd;
@XmlElement(name = "PdgPrcg")
protected Reason18Choice pdgPrcg;
@XmlElement(name = "Rjctd")
protected Reason18Choice rjctd;
@XmlElement(name = "Cmpltd")
protected Reason4 cmpltd;
@XmlElement(name = "Prtry")
protected ProprietaryStatusAndReason6 prtry;
/**
* Gets the value of the ackdAccptd property.
*
* @return
* possible object is
* {@link Reason4 }
*
*/
public Reason4 getAckdAccptd() {
return ackdAccptd;
}
/**
* Sets the value of the ackdAccptd property.
*
* @param value
* allowed object is
* {@link Reason4 }
*
*/
public ProcessingStatus72Choice setAckdAccptd(Reason4 value) {
this.ackdAccptd = value;
return this;
}
/**
* Gets the value of the pdgPrcg property.
*
* @return
* possible object is
* {@link Reason18Choice }
*
*/
public Reason18Choice getPdgPrcg() {
return pdgPrcg;
}
/**
* Sets the value of the pdgPrcg property.
*
* @param value
* allowed object is
* {@link Reason18Choice }
*
*/
public ProcessingStatus72Choice setPdgPrcg(Reason18Choice value) {
this.pdgPrcg = value;
return this;
}
/**
* Gets the value of the rjctd property.
*
* @return
* possible object is
* {@link Reason18Choice }
*
*/
public Reason18Choice getRjctd() {
return rjctd;
}
/**
* Sets the value of the rjctd property.
*
* @param value
* allowed object is
* {@link Reason18Choice }
*
*/
public ProcessingStatus72Choice setRjctd(Reason18Choice value) {
this.rjctd = value;
return this;
}
/**
* Gets the value of the cmpltd property.
*
* @return
* possible object is
* {@link Reason4 }
*
*/
public Reason4 getCmpltd() {
return cmpltd;
}
/**
* Sets the value of the cmpltd property.
*
* @param value
* allowed object is
* {@link Reason4 }
*
*/
public ProcessingStatus72Choice setCmpltd(Reason4 value) {
this.cmpltd = value;
return this;
}
/**
* Gets the value of the prtry property.
*
* @return
* possible object is
* {@link ProprietaryStatusAndReason6 }
*
*/
public ProprietaryStatusAndReason6 getPrtry() {
return prtry;
}
/**
* Sets the value of the prtry property.
*
* @param value
* allowed object is
* {@link ProprietaryStatusAndReason6 }
*
*/
public ProcessingStatus72Choice setPrtry(ProprietaryStatusAndReason6 value) {
this.prtry = 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