com.prowidesoftware.swift.model.mx.dic.DuplicateV03 Maven / Gradle / Ivy
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;
/**
* Scope
* The Duplicate message is used by financial institutions, with their own offices, and/or with other financial institutions with which they have established bilateral agreements. It allows to exchange duplicate payment instructions.
* Usage
* This message must be sent in response to a Request For Duplicate message.
* The Duplicate Data element must contain a well formed XML document. This means XML special characters such as '<' must be used in a way that is consistent with XML well-formedness criteria.
.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DuplicateV03", propOrder = {
"assgnmt",
"_case",
"dplct"
})
public class DuplicateV03 {
@XmlElement(name = "Assgnmt", required = true)
protected CaseAssignment2 assgnmt;
@XmlElement(name = "Case", required = true)
protected Case2 _case;
@XmlElement(name = "Dplct", required = true)
protected ProprietaryData4 dplct;
/**
* 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 DuplicateV03 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 DuplicateV03 setCase(Case2 value) {
this._case = value;
return this;
}
/**
* Gets the value of the dplct property.
*
* @return
* possible object is
* {@link ProprietaryData4 }
*
*/
public ProprietaryData4 getDplct() {
return dplct;
}
/**
* Sets the value of the dplct property.
*
* @param value
* allowed object is
* {@link ProprietaryData4 }
*
*/
public DuplicateV03 setDplct(ProprietaryData4 value) {
this.dplct = 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