com.prowidesoftware.swift.model.mx.sys.dic.ReportInfo 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.sys.dic;
import java.math.BigDecimal;
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 com.prowidesoftware.swift.model.mx.sys.dic.SwGblStatus;
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;
/**
* Java class for ReportInfo complex type.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReportInfo", propOrder = {
"pgNb",
"lstPgInd",
"exctnRptRslt",
"exctnRptFailrDtls",
"exctnTm"
})
public class ReportInfo {
@XmlElement(name = "PgNb", required = true)
protected BigDecimal pgNb;
@XmlElement(name = "LstPgInd", required = true)
@XmlSchemaType(name = "string")
protected SwBooleanIndicator lstPgInd;
@XmlElement(name = "ExctnRptRslt", required = true)
@XmlSchemaType(name = "string")
protected ResultCode exctnRptRslt;
@XmlElement(name = "ExctnRptFailrDtls")
protected SwGblStatus exctnRptFailrDtls;
@XmlElement(name = "ExctnTm", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar exctnTm;
/**
* Gets the value of the pgNb property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPgNb() {
return pgNb;
}
/**
* Sets the value of the pgNb property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public ReportInfo setPgNb(BigDecimal value) {
this.pgNb = value;
return this;
}
/**
* Gets the value of the lstPgInd property.
*
* @return
* possible object is
* {@link SwBooleanIndicator }
*
*/
public SwBooleanIndicator getLstPgInd() {
return lstPgInd;
}
/**
* Sets the value of the lstPgInd property.
*
* @param value
* allowed object is
* {@link SwBooleanIndicator }
*
*/
public ReportInfo setLstPgInd(SwBooleanIndicator value) {
this.lstPgInd = value;
return this;
}
/**
* Gets the value of the exctnRptRslt property.
*
* @return
* possible object is
* {@link ResultCode }
*
*/
public ResultCode getExctnRptRslt() {
return exctnRptRslt;
}
/**
* Sets the value of the exctnRptRslt property.
*
* @param value
* allowed object is
* {@link ResultCode }
*
*/
public ReportInfo setExctnRptRslt(ResultCode value) {
this.exctnRptRslt = value;
return this;
}
/**
* Gets the value of the exctnRptFailrDtls property.
*
* @return
* possible object is
* {@link SwGblStatus }
*
*/
public SwGblStatus getExctnRptFailrDtls() {
return exctnRptFailrDtls;
}
/**
* Sets the value of the exctnRptFailrDtls property.
*
* @param value
* allowed object is
* {@link SwGblStatus }
*
*/
public ReportInfo setExctnRptFailrDtls(SwGblStatus value) {
this.exctnRptFailrDtls = value;
return this;
}
/**
* Gets the value of the exctnTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExctnTm() {
return exctnTm;
}
/**
* Sets the value of the exctnTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public ReportInfo setExctnTm(XMLGregorianCalendar value) {
this.exctnTm = 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