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