com.prowidesoftware.swift.model.mx.dic.ClaimNonReceiptV03 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;
/**
* Scope
* The Claim Non Receipt message is sent by a case creator/case assigner to a case assignee.
* This message is used to initiate an investigation for missing funds at the creditor (missing credit entry to its account) or at an agent along the processing chain (missing cover for a received payment instruction).
* Usage
* The claim non receipt case occurs in two situations:
* - The creditor is expecting funds from a particular debtor and cannot find the corresponding credit entry on its account. In this situation, it is understood that the creditor will contact its debtor, and that the debtor will trigger the claim non receipt case on its behalf. A workflow where the creditor directly addresses a Claim Non Receipt message to its account servicing institution is not retained.
* - An agent in the processing chain cannot find a cover payment corresponding to a received payment instruction. In this situation, the agent may directly trigger the investigation by sending a Claim Non Receipt message to the sender of the original payment instruction.
* The Claim Non Receipt message covers one and only one payment instruction at a time. If several expected payment instructions/cover instructions are found missing, then multiple Claim Non Receipt messages must be sent.
* Depending on the result of the investigation by a case assignee (incorrect routing, errors/omissions when processing the instruction or even the absence of an error) and the stage at which the payment instruction is being process, the claim non receipt case may lead to a:
* - Request To Cancel Payment message, sent to the subsequent agent in the payment processing chain, if the original payment instruction has been incorrectly routed through the chain of agents. (This also implies that a new, corrected, payment instruction is issued).
* - Request To Modify Payment message, sent to the subsequent agent in the payment processing chain, if a truncation or omission has occurred during the processing of the original payment instruction.
* If the above situations occur, the assignee wanting to request a payment cancellation or payment modification should first send out a Resolution Of Investigation with a confirmation status that indicates that either cancellation (CWFW) modification (MWFW) or unable to apply (UWFW) will follow. (See section on Resolution Of Investigation for more details).
* In the cover is missing, the case assignee may also simply issue the omitted cover payment or when the initial cover information was incorrect, update the cover (through modification and/or cancellation as required) with the correction information provided in the ClaimNonReceipt message. The case assignee will issue a Resolution Of Investigation message with the CorrectionTransaction element mentioning the references of the cover payment.
* The Claim Non Receipt message may be forwarded to subsequent case assignees.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClaimNonReceiptV03", propOrder = {
"assgnmt",
"_case",
"undrlyg",
"coverDtls"
})
public class ClaimNonReceiptV03 {
@XmlElement(name = "Assgnmt", required = true)
protected CaseAssignment2 assgnmt;
@XmlElement(name = "Case", required = true)
protected Case2 _case;
@XmlElement(name = "Undrlyg", required = true)
protected UnderlyingTransaction1Choice undrlyg;
@XmlElement(name = "CoverDtls")
protected MissingCover2 coverDtls;
/**
* Gets the value of the assgnmt property.
*
* @return
* possible object is
* {@link CaseAssignment2 }
*
*/
public CaseAssignment2 getAssgnmt() {
return assgnmt;
}
/**
* Sets the value of the assgnmt property.
*
* @param value
* allowed object is
* {@link CaseAssignment2 }
*
*/
public ClaimNonReceiptV03 setAssgnmt(CaseAssignment2 value) {
this.assgnmt = value;
return this;
}
/**
* Gets the value of the case property.
*
* @return
* possible object is
* {@link Case2 }
*
*/
public Case2 getCase() {
return _case;
}
/**
* Sets the value of the case property.
*
* @param value
* allowed object is
* {@link Case2 }
*
*/
public ClaimNonReceiptV03 setCase(Case2 value) {
this._case = value;
return this;
}
/**
* Gets the value of the undrlyg property.
*
* @return
* possible object is
* {@link UnderlyingTransaction1Choice }
*
*/
public UnderlyingTransaction1Choice getUndrlyg() {
return undrlyg;
}
/**
* Sets the value of the undrlyg property.
*
* @param value
* allowed object is
* {@link UnderlyingTransaction1Choice }
*
*/
public ClaimNonReceiptV03 setUndrlyg(UnderlyingTransaction1Choice value) {
this.undrlyg = value;
return this;
}
/**
* Gets the value of the coverDtls property.
*
* @return
* possible object is
* {@link MissingCover2 }
*
*/
public MissingCover2 getCoverDtls() {
return coverDtls;
}
/**
* Sets the value of the coverDtls property.
*
* @param value
* allowed object is
* {@link MissingCover2 }
*
*/
public ClaimNonReceiptV03 setCoverDtls(MissingCover2 value) {
this.coverDtls = 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