com.prowidesoftware.swift.model.mx.dic.InstructionProcessingStatus27Choice 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 instruction processing status.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InstructionProcessingStatus27Choice", propOrder = {
"pdgPrcg",
"cxlReqd",
"ackdAccptd",
"canc",
"gnrtd",
"rpr",
"pdgCxl",
"modReqd"
})
public class InstructionProcessingStatus27Choice {
@XmlElement(name = "PdgPrcg")
protected PendingProcessingStatus15Choice pdgPrcg;
@XmlElement(name = "CxlReqd")
protected ProprietaryReason5 cxlReqd;
@XmlElement(name = "AckdAccptd")
protected AcknowledgedAcceptedStatus25Choice ackdAccptd;
@XmlElement(name = "Canc")
protected CancellationStatus17Choice canc;
@XmlElement(name = "Gnrtd")
protected GeneratedStatus8Choice gnrtd;
@XmlElement(name = "Rpr")
protected RepairStatus16Choice rpr;
@XmlElement(name = "PdgCxl")
protected PendingStatus46Choice pdgCxl;
@XmlElement(name = "ModReqd")
protected ProprietaryReason5 modReqd;
/**
* Gets the value of the pdgPrcg property.
*
* @return
* possible object is
* {@link PendingProcessingStatus15Choice }
*
*/
public PendingProcessingStatus15Choice getPdgPrcg() {
return pdgPrcg;
}
/**
* Sets the value of the pdgPrcg property.
*
* @param value
* allowed object is
* {@link PendingProcessingStatus15Choice }
*
*/
public InstructionProcessingStatus27Choice setPdgPrcg(PendingProcessingStatus15Choice value) {
this.pdgPrcg = value;
return this;
}
/**
* Gets the value of the cxlReqd property.
*
* @return
* possible object is
* {@link ProprietaryReason5 }
*
*/
public ProprietaryReason5 getCxlReqd() {
return cxlReqd;
}
/**
* Sets the value of the cxlReqd property.
*
* @param value
* allowed object is
* {@link ProprietaryReason5 }
*
*/
public InstructionProcessingStatus27Choice setCxlReqd(ProprietaryReason5 value) {
this.cxlReqd = value;
return this;
}
/**
* Gets the value of the ackdAccptd property.
*
* @return
* possible object is
* {@link AcknowledgedAcceptedStatus25Choice }
*
*/
public AcknowledgedAcceptedStatus25Choice getAckdAccptd() {
return ackdAccptd;
}
/**
* Sets the value of the ackdAccptd property.
*
* @param value
* allowed object is
* {@link AcknowledgedAcceptedStatus25Choice }
*
*/
public InstructionProcessingStatus27Choice setAckdAccptd(AcknowledgedAcceptedStatus25Choice value) {
this.ackdAccptd = value;
return this;
}
/**
* Gets the value of the canc property.
*
* @return
* possible object is
* {@link CancellationStatus17Choice }
*
*/
public CancellationStatus17Choice getCanc() {
return canc;
}
/**
* Sets the value of the canc property.
*
* @param value
* allowed object is
* {@link CancellationStatus17Choice }
*
*/
public InstructionProcessingStatus27Choice setCanc(CancellationStatus17Choice value) {
this.canc = value;
return this;
}
/**
* Gets the value of the gnrtd property.
*
* @return
* possible object is
* {@link GeneratedStatus8Choice }
*
*/
public GeneratedStatus8Choice getGnrtd() {
return gnrtd;
}
/**
* Sets the value of the gnrtd property.
*
* @param value
* allowed object is
* {@link GeneratedStatus8Choice }
*
*/
public InstructionProcessingStatus27Choice setGnrtd(GeneratedStatus8Choice value) {
this.gnrtd = value;
return this;
}
/**
* Gets the value of the rpr property.
*
* @return
* possible object is
* {@link RepairStatus16Choice }
*
*/
public RepairStatus16Choice getRpr() {
return rpr;
}
/**
* Sets the value of the rpr property.
*
* @param value
* allowed object is
* {@link RepairStatus16Choice }
*
*/
public InstructionProcessingStatus27Choice setRpr(RepairStatus16Choice value) {
this.rpr = value;
return this;
}
/**
* Gets the value of the pdgCxl property.
*
* @return
* possible object is
* {@link PendingStatus46Choice }
*
*/
public PendingStatus46Choice getPdgCxl() {
return pdgCxl;
}
/**
* Sets the value of the pdgCxl property.
*
* @param value
* allowed object is
* {@link PendingStatus46Choice }
*
*/
public InstructionProcessingStatus27Choice setPdgCxl(PendingStatus46Choice value) {
this.pdgCxl = value;
return this;
}
/**
* Gets the value of the modReqd property.
*
* @return
* possible object is
* {@link ProprietaryReason5 }
*
*/
public ProprietaryReason5 getModReqd() {
return modReqd;
}
/**
* Sets the value of the modReqd property.
*
* @param value
* allowed object is
* {@link ProprietaryReason5 }
*
*/
public InstructionProcessingStatus27Choice setModReqd(ProprietaryReason5 value) {
this.modReqd = 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