com.prowidesoftware.swift.model.mx.dic.ResendSearchCriteria2 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.time.LocalDate;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
/**
* Defines the criteria to extract the message(s) which should be resent.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ResendSearchCriteria2", propOrder = {
"bizDt",
"seqNb",
"seqRg",
"orgnlMsgNmId",
"fileRef",
"rcpt"
})
public class ResendSearchCriteria2 {
@XmlElement(name = "BizDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate bizDt;
@XmlElement(name = "SeqNb")
protected String seqNb;
@XmlElement(name = "SeqRg")
protected SequenceRange1Choice seqRg;
@XmlElement(name = "OrgnlMsgNmId")
protected String orgnlMsgNmId;
@XmlElement(name = "FileRef")
protected String fileRef;
@XmlElement(name = "Rcpt", required = true)
protected PartyIdentification136 rcpt;
/**
* Gets the value of the bizDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getBizDt() {
return bizDt;
}
/**
* Sets the value of the bizDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ResendSearchCriteria2 setBizDt(LocalDate value) {
this.bizDt = value;
return this;
}
/**
* Gets the value of the seqNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSeqNb() {
return seqNb;
}
/**
* Sets the value of the seqNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ResendSearchCriteria2 setSeqNb(String value) {
this.seqNb = value;
return this;
}
/**
* Gets the value of the seqRg property.
*
* @return
* possible object is
* {@link SequenceRange1Choice }
*
*/
public SequenceRange1Choice getSeqRg() {
return seqRg;
}
/**
* Sets the value of the seqRg property.
*
* @param value
* allowed object is
* {@link SequenceRange1Choice }
*
*/
public ResendSearchCriteria2 setSeqRg(SequenceRange1Choice value) {
this.seqRg = value;
return this;
}
/**
* Gets the value of the orgnlMsgNmId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgnlMsgNmId() {
return orgnlMsgNmId;
}
/**
* Sets the value of the orgnlMsgNmId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ResendSearchCriteria2 setOrgnlMsgNmId(String value) {
this.orgnlMsgNmId = value;
return this;
}
/**
* Gets the value of the fileRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileRef() {
return fileRef;
}
/**
* Sets the value of the fileRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ResendSearchCriteria2 setFileRef(String value) {
this.fileRef = value;
return this;
}
/**
* Gets the value of the rcpt property.
*
* @return
* possible object is
* {@link PartyIdentification136 }
*
*/
public PartyIdentification136 getRcpt() {
return rcpt;
}
/**
* Sets the value of the rcpt property.
*
* @param value
* allowed object is
* {@link PartyIdentification136 }
*
*/
public ResendSearchCriteria2 setRcpt(PartyIdentification136 value) {
this.rcpt = 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