com.prowidesoftware.swift.model.mx.dic.AdministrationProprietaryMessageV02 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;
/**
* It is used by financial institutions, with their own offices, or with other financial institutions with which they have established bilateral agreements. It is used as an envelope for a specified message included in it.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AdministrationProprietaryMessageV02", propOrder = {
"msgId",
"rltd",
"prvs",
"othr",
"prtryData"
})
public class AdministrationProprietaryMessageV02 {
@XmlElement(name = "MsgId")
protected MessageReference msgId;
@XmlElement(name = "Rltd")
protected MessageReference rltd;
@XmlElement(name = "Prvs")
protected MessageReference prvs;
@XmlElement(name = "Othr")
protected MessageReference othr;
@XmlElement(name = "PrtryData", required = true)
protected ProprietaryData5 prtryData;
/**
* Gets the value of the msgId property.
*
* @return
* possible object is
* {@link MessageReference }
*
*/
public MessageReference getMsgId() {
return msgId;
}
/**
* Sets the value of the msgId property.
*
* @param value
* allowed object is
* {@link MessageReference }
*
*/
public AdministrationProprietaryMessageV02 setMsgId(MessageReference value) {
this.msgId = value;
return this;
}
/**
* Gets the value of the rltd property.
*
* @return
* possible object is
* {@link MessageReference }
*
*/
public MessageReference getRltd() {
return rltd;
}
/**
* Sets the value of the rltd property.
*
* @param value
* allowed object is
* {@link MessageReference }
*
*/
public AdministrationProprietaryMessageV02 setRltd(MessageReference value) {
this.rltd = value;
return this;
}
/**
* Gets the value of the prvs property.
*
* @return
* possible object is
* {@link MessageReference }
*
*/
public MessageReference getPrvs() {
return prvs;
}
/**
* Sets the value of the prvs property.
*
* @param value
* allowed object is
* {@link MessageReference }
*
*/
public AdministrationProprietaryMessageV02 setPrvs(MessageReference value) {
this.prvs = value;
return this;
}
/**
* Gets the value of the othr property.
*
* @return
* possible object is
* {@link MessageReference }
*
*/
public MessageReference getOthr() {
return othr;
}
/**
* Sets the value of the othr property.
*
* @param value
* allowed object is
* {@link MessageReference }
*
*/
public AdministrationProprietaryMessageV02 setOthr(MessageReference value) {
this.othr = value;
return this;
}
/**
* Gets the value of the prtryData property.
*
* @return
* possible object is
* {@link ProprietaryData5 }
*
*/
public ProprietaryData5 getPrtryData() {
return prtryData;
}
/**
* Sets the value of the prtryData property.
*
* @param value
* allowed object is
* {@link ProprietaryData5 }
*
*/
public AdministrationProprietaryMessageV02 setPrtryData(ProprietaryData5 value) {
this.prtryData = 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