com.prowidesoftware.swift.model.mx.dic.OriginalMessage1 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Identification of a message previously sent.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OriginalMessage1", propOrder = {
"msgDefIdr",
"fr",
"to",
"bizMsgIdr",
"creDt",
"cpyDplct"
})
public class OriginalMessage1 {
@XmlElement(name = "MsgDefIdr", required = true)
protected String msgDefIdr;
@XmlElement(name = "Fr", required = true)
protected Party9Choice fr;
@XmlElement(name = "To", required = true)
protected Party9Choice to;
@XmlElement(name = "BizMsgIdr", required = true)
protected String bizMsgIdr;
@XmlElement(name = "CreDt", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDt;
@XmlElement(name = "CpyDplct")
@XmlSchemaType(name = "string")
protected CopyDuplicate1Code cpyDplct;
/**
* Gets the value of the msgDefIdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMsgDefIdr() {
return msgDefIdr;
}
/**
* Sets the value of the msgDefIdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OriginalMessage1 setMsgDefIdr(String value) {
this.msgDefIdr = value;
return this;
}
/**
* Gets the value of the fr property.
*
* @return
* possible object is
* {@link Party9Choice }
*
*/
public Party9Choice getFr() {
return fr;
}
/**
* Sets the value of the fr property.
*
* @param value
* allowed object is
* {@link Party9Choice }
*
*/
public OriginalMessage1 setFr(Party9Choice value) {
this.fr = value;
return this;
}
/**
* Gets the value of the to property.
*
* @return
* possible object is
* {@link Party9Choice }
*
*/
public Party9Choice getTo() {
return to;
}
/**
* Sets the value of the to property.
*
* @param value
* allowed object is
* {@link Party9Choice }
*
*/
public OriginalMessage1 setTo(Party9Choice value) {
this.to = value;
return this;
}
/**
* Gets the value of the bizMsgIdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBizMsgIdr() {
return bizMsgIdr;
}
/**
* Sets the value of the bizMsgIdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OriginalMessage1 setBizMsgIdr(String value) {
this.bizMsgIdr = value;
return this;
}
/**
* Gets the value of the creDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreDt() {
return creDt;
}
/**
* Sets the value of the creDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public OriginalMessage1 setCreDt(XMLGregorianCalendar value) {
this.creDt = value;
return this;
}
/**
* Gets the value of the cpyDplct property.
*
* @return
* possible object is
* {@link CopyDuplicate1Code }
*
*/
public CopyDuplicate1Code getCpyDplct() {
return cpyDplct;
}
/**
* Sets the value of the cpyDplct property.
*
* @param value
* allowed object is
* {@link CopyDuplicate1Code }
*
*/
public OriginalMessage1 setCpyDplct(CopyDuplicate1Code value) {
this.cpyDplct = 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