com.intuit.ipp.data.Report Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ipp-v3-java-data Show documentation
Show all versions of ipp-v3-java-data Show documentation
IPP Java V3 DevKit Data project - FMS Entities generation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.03.01 at 02:14:53 PM PST
//
package com.intuit.ipp.data;
import java.io.Serializable;
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.jvnet.jaxb2_commons.lang.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.HashCode2;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy2;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
/**
* Report Response Type
*
* Java class for Report complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Report">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Header" type="{http://schema.intuit.com/finance/v3}ReportHeader" minOccurs="0"/>
* <element name="Columns" type="{http://schema.intuit.com/finance/v3}Columns" minOccurs="0"/>
* <element name="Rows" type="{http://schema.intuit.com/finance/v3}Rows" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Report", propOrder = {
"header",
"columns",
"rows"
})
public class Report implements Serializable, Equals2, HashCode2
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Header")
protected ReportHeader header;
@XmlElement(name = "Columns")
protected Columns columns;
@XmlElement(name = "Rows")
protected Rows rows;
/**
* Gets the value of the header property.
*
* @return
* possible object is
* {@link ReportHeader }
*
*/
public ReportHeader getHeader() {
return header;
}
/**
* Sets the value of the header property.
*
* @param value
* allowed object is
* {@link ReportHeader }
*
*/
public void setHeader(ReportHeader value) {
this.header = value;
}
/**
* Gets the value of the columns property.
*
* @return
* possible object is
* {@link Columns }
*
*/
public Columns getColumns() {
return columns;
}
/**
* Sets the value of the columns property.
*
* @param value
* allowed object is
* {@link Columns }
*
*/
public void setColumns(Columns value) {
this.columns = value;
}
/**
* Gets the value of the rows property.
*
* @return
* possible object is
* {@link Rows }
*
*/
public Rows getRows() {
return rows;
}
/**
* Sets the value of the rows property.
*
* @param value
* allowed object is
* {@link Rows }
*
*/
public void setRows(Rows value) {
this.rows = value;
}
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
}
if (this == object) {
return true;
}
final Report that = ((Report) object);
{
ReportHeader lhsHeader;
lhsHeader = this.getHeader();
ReportHeader rhsHeader;
rhsHeader = that.getHeader();
if (!strategy.equals(LocatorUtils.property(thisLocator, "header", lhsHeader), LocatorUtils.property(thatLocator, "header", rhsHeader), lhsHeader, rhsHeader, (this.header!= null), (that.header!= null))) {
return false;
}
}
{
Columns lhsColumns;
lhsColumns = this.getColumns();
Columns rhsColumns;
rhsColumns = that.getColumns();
if (!strategy.equals(LocatorUtils.property(thisLocator, "columns", lhsColumns), LocatorUtils.property(thatLocator, "columns", rhsColumns), lhsColumns, rhsColumns, (this.columns!= null), (that.columns!= null))) {
return false;
}
}
{
Rows lhsRows;
lhsRows = this.getRows();
Rows rhsRows;
rhsRows = that.getRows();
if (!strategy.equals(LocatorUtils.property(thisLocator, "rows", lhsRows), LocatorUtils.property(thatLocator, "rows", rhsRows), lhsRows, rhsRows, (this.rows!= null), (that.rows!= null))) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) {
int currentHashCode = 1;
{
ReportHeader theHeader;
theHeader = this.getHeader();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "header", theHeader), currentHashCode, theHeader, (this.header!= null));
}
{
Columns theColumns;
theColumns = this.getColumns();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "columns", theColumns), currentHashCode, theColumns, (this.columns!= null));
}
{
Rows theRows;
theRows = this.getRows();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "rows", theRows), currentHashCode, theRows, (this.rows!= null));
}
return currentHashCode;
}
public int hashCode() {
final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE;
return this.hashCode(null, strategy);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy