com.prowidesoftware.swift.model.mx.dic.ProcessingStatus52Choice 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 format for the processing status.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProcessingStatus52Choice", propOrder = {
"ackdAccptd",
"pdgPrcg",
"rpr",
"pdgCxl",
"prtry",
"cxlReqd"
})
public class ProcessingStatus52Choice {
@XmlElement(name = "AckdAccptd")
protected AcknowledgedAcceptedStatus21Choice ackdAccptd;
@XmlElement(name = "PdgPrcg")
protected PendingProcessingStatus11Choice pdgPrcg;
@XmlElement(name = "Rpr")
protected RepairStatus12Choice rpr;
@XmlElement(name = "PdgCxl")
protected PendingStatus38Choice pdgCxl;
@XmlElement(name = "Prtry")
protected ProprietaryStatusAndReason6 prtry;
@XmlElement(name = "CxlReqd")
protected ProprietaryReason4 cxlReqd;
/**
* Gets the value of the ackdAccptd property.
*
* @return
* possible object is
* {@link AcknowledgedAcceptedStatus21Choice }
*
*/
public AcknowledgedAcceptedStatus21Choice getAckdAccptd() {
return ackdAccptd;
}
/**
* Sets the value of the ackdAccptd property.
*
* @param value
* allowed object is
* {@link AcknowledgedAcceptedStatus21Choice }
*
*/
public ProcessingStatus52Choice setAckdAccptd(AcknowledgedAcceptedStatus21Choice value) {
this.ackdAccptd = value;
return this;
}
/**
* Gets the value of the pdgPrcg property.
*
* @return
* possible object is
* {@link PendingProcessingStatus11Choice }
*
*/
public PendingProcessingStatus11Choice getPdgPrcg() {
return pdgPrcg;
}
/**
* Sets the value of the pdgPrcg property.
*
* @param value
* allowed object is
* {@link PendingProcessingStatus11Choice }
*
*/
public ProcessingStatus52Choice setPdgPrcg(PendingProcessingStatus11Choice value) {
this.pdgPrcg = value;
return this;
}
/**
* Gets the value of the rpr property.
*
* @return
* possible object is
* {@link RepairStatus12Choice }
*
*/
public RepairStatus12Choice getRpr() {
return rpr;
}
/**
* Sets the value of the rpr property.
*
* @param value
* allowed object is
* {@link RepairStatus12Choice }
*
*/
public ProcessingStatus52Choice setRpr(RepairStatus12Choice value) {
this.rpr = value;
return this;
}
/**
* Gets the value of the pdgCxl property.
*
* @return
* possible object is
* {@link PendingStatus38Choice }
*
*/
public PendingStatus38Choice getPdgCxl() {
return pdgCxl;
}
/**
* Sets the value of the pdgCxl property.
*
* @param value
* allowed object is
* {@link PendingStatus38Choice }
*
*/
public ProcessingStatus52Choice setPdgCxl(PendingStatus38Choice value) {
this.pdgCxl = 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 ProcessingStatus52Choice setPrtry(ProprietaryStatusAndReason6 value) {
this.prtry = value;
return this;
}
/**
* Gets the value of the cxlReqd property.
*
* @return
* possible object is
* {@link ProprietaryReason4 }
*
*/
public ProprietaryReason4 getCxlReqd() {
return cxlReqd;
}
/**
* Sets the value of the cxlReqd property.
*
* @param value
* allowed object is
* {@link ProprietaryReason4 }
*
*/
public ProcessingStatus52Choice setCxlReqd(ProprietaryReason4 value) {
this.cxlReqd = 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