
com.prowidesoftware.swift.model.mx.dic.ReportQueryCriteria2 Maven / Gradle / Ivy
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.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;
/**
* Defines the criteria which are used to search for generated report.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReportQueryCriteria2", propOrder = {
"newQryNm",
"schCrit"
})
public class ReportQueryCriteria2 {
@XmlElement(name = "NewQryNm")
protected String newQryNm;
@XmlElement(name = "SchCrit", required = true)
protected ReportQuerySearchCriteria2 schCrit;
/**
* Gets the value of the newQryNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNewQryNm() {
return newQryNm;
}
/**
* Sets the value of the newQryNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReportQueryCriteria2 setNewQryNm(String value) {
this.newQryNm = value;
return this;
}
/**
* Gets the value of the schCrit property.
*
* @return
* possible object is
* {@link ReportQuerySearchCriteria2 }
*
*/
public ReportQuerySearchCriteria2 getSchCrit() {
return schCrit;
}
/**
* Sets the value of the schCrit property.
*
* @param value
* allowed object is
* {@link ReportQuerySearchCriteria2 }
*
*/
public ReportQueryCriteria2 setSchCrit(ReportQuerySearchCriteria2 value) {
this.schCrit = 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