com.prowidesoftware.swift.model.mx.dic.AdditionalReference4 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;
/**
* References a related message or provides another reference, such as a pool reference, linking a set of messages. The party which issued the related reference may be the Sender of the referenced message or a party other than the Sender.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AdditionalReference4", propOrder = {
"ref",
"refIssr",
"msgNm"
})
public class AdditionalReference4 {
@XmlElement(name = "Ref", required = true)
protected String ref;
@XmlElement(name = "RefIssr")
protected PartyIdentification2Choice refIssr;
@XmlElement(name = "MsgNm")
protected String msgNm;
/**
* Gets the value of the ref property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRef() {
return ref;
}
/**
* Sets the value of the ref property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AdditionalReference4 setRef(String value) {
this.ref = value;
return this;
}
/**
* Gets the value of the refIssr property.
*
* @return
* possible object is
* {@link PartyIdentification2Choice }
*
*/
public PartyIdentification2Choice getRefIssr() {
return refIssr;
}
/**
* Sets the value of the refIssr property.
*
* @param value
* allowed object is
* {@link PartyIdentification2Choice }
*
*/
public AdditionalReference4 setRefIssr(PartyIdentification2Choice value) {
this.refIssr = value;
return this;
}
/**
* Gets the value of the msgNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMsgNm() {
return msgNm;
}
/**
* Sets the value of the msgNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AdditionalReference4 setMsgNm(String value) {
this.msgNm = 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