com.prowidesoftware.swift.model.mx.dic.InstructionProcessingStatus42Choice 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 formats for an instruction processing status.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InstructionProcessingStatus42Choice", propOrder = {
"pdgPrcg",
"cxlReqd",
"ackdAccptd",
"canc",
"gnrtd",
"rpr",
"pdgCxl",
"modReqd"
})
public class InstructionProcessingStatus42Choice {
@XmlElement(name = "PdgPrcg")
protected PendingProcessingStatus18Choice pdgPrcg;
@XmlElement(name = "CxlReqd")
protected ProprietaryReason4 cxlReqd;
@XmlElement(name = "AckdAccptd")
protected AcknowledgedAcceptedStatus21Choice ackdAccptd;
@XmlElement(name = "Canc")
protected CancellationStatus24Choice canc;
@XmlElement(name = "Gnrtd")
protected GeneratedStatus7Choice gnrtd;
@XmlElement(name = "Rpr")
protected RepairStatus12Choice rpr;
@XmlElement(name = "PdgCxl")
protected PendingStatus38Choice pdgCxl;
@XmlElement(name = "ModReqd")
protected ProprietaryReason4 modReqd;
/**
* Gets the value of the pdgPrcg property.
*
* @return
* possible object is
* {@link PendingProcessingStatus18Choice }
*
*/
public PendingProcessingStatus18Choice getPdgPrcg() {
return pdgPrcg;
}
/**
* Sets the value of the pdgPrcg property.
*
* @param value
* allowed object is
* {@link PendingProcessingStatus18Choice }
*
*/
public InstructionProcessingStatus42Choice setPdgPrcg(PendingProcessingStatus18Choice value) {
this.pdgPrcg = 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 InstructionProcessingStatus42Choice setCxlReqd(ProprietaryReason4 value) {
this.cxlReqd = value;
return this;
}
/**
* 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 InstructionProcessingStatus42Choice setAckdAccptd(AcknowledgedAcceptedStatus21Choice value) {
this.ackdAccptd = value;
return this;
}
/**
* Gets the value of the canc property.
*
* @return
* possible object is
* {@link CancellationStatus24Choice }
*
*/
public CancellationStatus24Choice getCanc() {
return canc;
}
/**
* Sets the value of the canc property.
*
* @param value
* allowed object is
* {@link CancellationStatus24Choice }
*
*/
public InstructionProcessingStatus42Choice setCanc(CancellationStatus24Choice value) {
this.canc = value;
return this;
}
/**
* Gets the value of the gnrtd property.
*
* @return
* possible object is
* {@link GeneratedStatus7Choice }
*
*/
public GeneratedStatus7Choice getGnrtd() {
return gnrtd;
}
/**
* Sets the value of the gnrtd property.
*
* @param value
* allowed object is
* {@link GeneratedStatus7Choice }
*
*/
public InstructionProcessingStatus42Choice setGnrtd(GeneratedStatus7Choice value) {
this.gnrtd = 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 InstructionProcessingStatus42Choice 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 InstructionProcessingStatus42Choice setPdgCxl(PendingStatus38Choice value) {
this.pdgCxl = value;
return this;
}
/**
* Gets the value of the modReqd property.
*
* @return
* possible object is
* {@link ProprietaryReason4 }
*
*/
public ProprietaryReason4 getModReqd() {
return modReqd;
}
/**
* Sets the value of the modReqd property.
*
* @param value
* allowed object is
* {@link ProprietaryReason4 }
*
*/
public InstructionProcessingStatus42Choice setModReqd(ProprietaryReason4 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