no.nav.gosys.journal.Fildetaljer Maven / Gradle / Ivy
package no.nav.gosys.journal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.HashCode;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
/**
* Java class for Fildetaljer complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Fildetaljer">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="fildetaljerId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="filUuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="filtype" type="{http://nav.no/virksomhet/gjennomforing/arkiv/journal/v2}Filtype" minOccurs="0"/>
* <element name="variantFormat" type="{http://nav.no/virksomhet/gjennomforing/arkiv/journal/v2}VariantFormat" minOccurs="0"/>
* <element name="batchNavn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="filnavn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="filstorrelse" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="sporing" type="{http://nav.no/virksomhet/gjennomforing/arkiv/journal/v2}Sporing" minOccurs="0"/>
* <element name="versjon" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="utvidelse" type="{http://nav.no/virksomhet/gjennomforing/arkiv/journal/v2}FildetaljerUtvidelse1" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Fildetaljer", propOrder = {
"fildetaljerId",
"filUuid",
"filtype",
"variantFormat",
"batchNavn",
"filnavn",
"filstorrelse",
"sporing",
"versjon",
"utvidelse"
})
public class Fildetaljer
implements Equals, HashCode, ToString
{
protected Long fildetaljerId;
protected String filUuid;
protected Filtype filtype;
protected VariantFormat variantFormat;
protected String batchNavn;
protected String filnavn;
protected String filstorrelse;
protected Sporing sporing;
protected Long versjon;
protected FildetaljerUtvidelse1 utvidelse;
/**
* Gets the value of the fildetaljerId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getFildetaljerId() {
return fildetaljerId;
}
/**
* Sets the value of the fildetaljerId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setFildetaljerId(Long value) {
this.fildetaljerId = value;
}
/**
* Gets the value of the filUuid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFilUuid() {
return filUuid;
}
/**
* Sets the value of the filUuid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFilUuid(String value) {
this.filUuid = value;
}
/**
* Gets the value of the filtype property.
*
* @return
* possible object is
* {@link Filtype }
*
*/
public Filtype getFiltype() {
return filtype;
}
/**
* Sets the value of the filtype property.
*
* @param value
* allowed object is
* {@link Filtype }
*
*/
public void setFiltype(Filtype value) {
this.filtype = value;
}
/**
* Gets the value of the variantFormat property.
*
* @return
* possible object is
* {@link VariantFormat }
*
*/
public VariantFormat getVariantFormat() {
return variantFormat;
}
/**
* Sets the value of the variantFormat property.
*
* @param value
* allowed object is
* {@link VariantFormat }
*
*/
public void setVariantFormat(VariantFormat value) {
this.variantFormat = value;
}
/**
* Gets the value of the batchNavn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBatchNavn() {
return batchNavn;
}
/**
* Sets the value of the batchNavn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBatchNavn(String value) {
this.batchNavn = value;
}
/**
* Gets the value of the filnavn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFilnavn() {
return filnavn;
}
/**
* Sets the value of the filnavn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFilnavn(String value) {
this.filnavn = value;
}
/**
* Gets the value of the filstorrelse property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFilstorrelse() {
return filstorrelse;
}
/**
* Sets the value of the filstorrelse property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFilstorrelse(String value) {
this.filstorrelse = value;
}
/**
* Gets the value of the sporing property.
*
* @return
* possible object is
* {@link Sporing }
*
*/
public Sporing getSporing() {
return sporing;
}
/**
* Sets the value of the sporing property.
*
* @param value
* allowed object is
* {@link Sporing }
*
*/
public void setSporing(Sporing value) {
this.sporing = value;
}
/**
* Gets the value of the versjon property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getVersjon() {
return versjon;
}
/**
* Sets the value of the versjon property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setVersjon(Long value) {
this.versjon = value;
}
/**
* Gets the value of the utvidelse property.
*
* @return
* possible object is
* {@link FildetaljerUtvidelse1 }
*
*/
public FildetaljerUtvidelse1 getUtvidelse() {
return utvidelse;
}
/**
* Sets the value of the utvidelse property.
*
* @param value
* allowed object is
* {@link FildetaljerUtvidelse1 }
*
*/
public void setUtvidelse(FildetaljerUtvidelse1 value) {
this.utvidelse = value;
}
public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
int currentHashCode = 1;
{
Long theFildetaljerId;
theFildetaljerId = this.getFildetaljerId();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "fildetaljerId", theFildetaljerId), currentHashCode, theFildetaljerId);
}
{
String theFilUuid;
theFilUuid = this.getFilUuid();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "filUuid", theFilUuid), currentHashCode, theFilUuid);
}
{
Filtype theFiltype;
theFiltype = this.getFiltype();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "filtype", theFiltype), currentHashCode, theFiltype);
}
{
VariantFormat theVariantFormat;
theVariantFormat = this.getVariantFormat();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "variantFormat", theVariantFormat), currentHashCode, theVariantFormat);
}
{
String theBatchNavn;
theBatchNavn = this.getBatchNavn();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "batchNavn", theBatchNavn), currentHashCode, theBatchNavn);
}
{
String theFilnavn;
theFilnavn = this.getFilnavn();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "filnavn", theFilnavn), currentHashCode, theFilnavn);
}
{
String theFilstorrelse;
theFilstorrelse = this.getFilstorrelse();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "filstorrelse", theFilstorrelse), currentHashCode, theFilstorrelse);
}
{
Sporing theSporing;
theSporing = this.getSporing();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "sporing", theSporing), currentHashCode, theSporing);
}
{
Long theVersjon;
theVersjon = this.getVersjon();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "versjon", theVersjon), currentHashCode, theVersjon);
}
{
FildetaljerUtvidelse1 theUtvidelse;
theUtvidelse = this.getUtvidelse();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "utvidelse", theUtvidelse), currentHashCode, theUtvidelse);
}
return currentHashCode;
}
public int hashCode() {
final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE;
return this.hashCode(null, strategy);
}
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) {
if (!(object instanceof Fildetaljer)) {
return false;
}
if (this == object) {
return true;
}
final Fildetaljer that = ((Fildetaljer) object);
{
Long lhsFildetaljerId;
lhsFildetaljerId = this.getFildetaljerId();
Long rhsFildetaljerId;
rhsFildetaljerId = that.getFildetaljerId();
if (!strategy.equals(LocatorUtils.property(thisLocator, "fildetaljerId", lhsFildetaljerId), LocatorUtils.property(thatLocator, "fildetaljerId", rhsFildetaljerId), lhsFildetaljerId, rhsFildetaljerId)) {
return false;
}
}
{
String lhsFilUuid;
lhsFilUuid = this.getFilUuid();
String rhsFilUuid;
rhsFilUuid = that.getFilUuid();
if (!strategy.equals(LocatorUtils.property(thisLocator, "filUuid", lhsFilUuid), LocatorUtils.property(thatLocator, "filUuid", rhsFilUuid), lhsFilUuid, rhsFilUuid)) {
return false;
}
}
{
Filtype lhsFiltype;
lhsFiltype = this.getFiltype();
Filtype rhsFiltype;
rhsFiltype = that.getFiltype();
if (!strategy.equals(LocatorUtils.property(thisLocator, "filtype", lhsFiltype), LocatorUtils.property(thatLocator, "filtype", rhsFiltype), lhsFiltype, rhsFiltype)) {
return false;
}
}
{
VariantFormat lhsVariantFormat;
lhsVariantFormat = this.getVariantFormat();
VariantFormat rhsVariantFormat;
rhsVariantFormat = that.getVariantFormat();
if (!strategy.equals(LocatorUtils.property(thisLocator, "variantFormat", lhsVariantFormat), LocatorUtils.property(thatLocator, "variantFormat", rhsVariantFormat), lhsVariantFormat, rhsVariantFormat)) {
return false;
}
}
{
String lhsBatchNavn;
lhsBatchNavn = this.getBatchNavn();
String rhsBatchNavn;
rhsBatchNavn = that.getBatchNavn();
if (!strategy.equals(LocatorUtils.property(thisLocator, "batchNavn", lhsBatchNavn), LocatorUtils.property(thatLocator, "batchNavn", rhsBatchNavn), lhsBatchNavn, rhsBatchNavn)) {
return false;
}
}
{
String lhsFilnavn;
lhsFilnavn = this.getFilnavn();
String rhsFilnavn;
rhsFilnavn = that.getFilnavn();
if (!strategy.equals(LocatorUtils.property(thisLocator, "filnavn", lhsFilnavn), LocatorUtils.property(thatLocator, "filnavn", rhsFilnavn), lhsFilnavn, rhsFilnavn)) {
return false;
}
}
{
String lhsFilstorrelse;
lhsFilstorrelse = this.getFilstorrelse();
String rhsFilstorrelse;
rhsFilstorrelse = that.getFilstorrelse();
if (!strategy.equals(LocatorUtils.property(thisLocator, "filstorrelse", lhsFilstorrelse), LocatorUtils.property(thatLocator, "filstorrelse", rhsFilstorrelse), lhsFilstorrelse, rhsFilstorrelse)) {
return false;
}
}
{
Sporing lhsSporing;
lhsSporing = this.getSporing();
Sporing rhsSporing;
rhsSporing = that.getSporing();
if (!strategy.equals(LocatorUtils.property(thisLocator, "sporing", lhsSporing), LocatorUtils.property(thatLocator, "sporing", rhsSporing), lhsSporing, rhsSporing)) {
return false;
}
}
{
Long lhsVersjon;
lhsVersjon = this.getVersjon();
Long rhsVersjon;
rhsVersjon = that.getVersjon();
if (!strategy.equals(LocatorUtils.property(thisLocator, "versjon", lhsVersjon), LocatorUtils.property(thatLocator, "versjon", rhsVersjon), lhsVersjon, rhsVersjon)) {
return false;
}
}
{
FildetaljerUtvidelse1 lhsUtvidelse;
lhsUtvidelse = this.getUtvidelse();
FildetaljerUtvidelse1 rhsUtvidelse;
rhsUtvidelse = that.getUtvidelse();
if (!strategy.equals(LocatorUtils.property(thisLocator, "utvidelse", lhsUtvidelse), LocatorUtils.property(thatLocator, "utvidelse", rhsUtvidelse), lhsUtvidelse, rhsUtvidelse)) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
public String toString() {
final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
strategy.appendEnd(locator, this, buffer);
return buffer;
}
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
{
Long theFildetaljerId;
theFildetaljerId = this.getFildetaljerId();
strategy.appendField(locator, this, "fildetaljerId", buffer, theFildetaljerId);
}
{
String theFilUuid;
theFilUuid = this.getFilUuid();
strategy.appendField(locator, this, "filUuid", buffer, theFilUuid);
}
{
Filtype theFiltype;
theFiltype = this.getFiltype();
strategy.appendField(locator, this, "filtype", buffer, theFiltype);
}
{
VariantFormat theVariantFormat;
theVariantFormat = this.getVariantFormat();
strategy.appendField(locator, this, "variantFormat", buffer, theVariantFormat);
}
{
String theBatchNavn;
theBatchNavn = this.getBatchNavn();
strategy.appendField(locator, this, "batchNavn", buffer, theBatchNavn);
}
{
String theFilnavn;
theFilnavn = this.getFilnavn();
strategy.appendField(locator, this, "filnavn", buffer, theFilnavn);
}
{
String theFilstorrelse;
theFilstorrelse = this.getFilstorrelse();
strategy.appendField(locator, this, "filstorrelse", buffer, theFilstorrelse);
}
{
Sporing theSporing;
theSporing = this.getSporing();
strategy.appendField(locator, this, "sporing", buffer, theSporing);
}
{
Long theVersjon;
theVersjon = this.getVersjon();
strategy.appendField(locator, this, "versjon", buffer, theVersjon);
}
{
FildetaljerUtvidelse1 theUtvidelse;
theUtvidelse = this.getUtvidelse();
strategy.appendField(locator, this, "utvidelse", buffer, theUtvidelse);
}
return buffer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy