All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.nav.gosys.journal.SkannetInnhold Maven / Gradle / Ivy

There is a newer version: 1.2019.09.25-00.21-49b69f0625e0
Show newest version

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 SkannetInnhold complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SkannetInnhold">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="skannetInnholdId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="vedleggNr" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="vedleggInnhold" 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}SkannetInnholdUtvidelse1" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SkannetInnhold", propOrder = { "skannetInnholdId", "vedleggNr", "vedleggInnhold", "sporing", "versjon", "utvidelse" }) public class SkannetInnhold implements Equals, HashCode, ToString { protected Long skannetInnholdId; protected Integer vedleggNr; protected String vedleggInnhold; protected Sporing sporing; protected Long versjon; protected SkannetInnholdUtvidelse1 utvidelse; /** * Gets the value of the skannetInnholdId property. * * @return * possible object is * {@link Long } * */ public Long getSkannetInnholdId() { return skannetInnholdId; } /** * Sets the value of the skannetInnholdId property. * * @param value * allowed object is * {@link Long } * */ public void setSkannetInnholdId(Long value) { this.skannetInnholdId = value; } /** * Gets the value of the vedleggNr property. * * @return * possible object is * {@link Integer } * */ public Integer getVedleggNr() { return vedleggNr; } /** * Sets the value of the vedleggNr property. * * @param value * allowed object is * {@link Integer } * */ public void setVedleggNr(Integer value) { this.vedleggNr = value; } /** * Gets the value of the vedleggInnhold property. * * @return * possible object is * {@link String } * */ public String getVedleggInnhold() { return vedleggInnhold; } /** * Sets the value of the vedleggInnhold property. * * @param value * allowed object is * {@link String } * */ public void setVedleggInnhold(String value) { this.vedleggInnhold = 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 SkannetInnholdUtvidelse1 } * */ public SkannetInnholdUtvidelse1 getUtvidelse() { return utvidelse; } /** * Sets the value of the utvidelse property. * * @param value * allowed object is * {@link SkannetInnholdUtvidelse1 } * */ public void setUtvidelse(SkannetInnholdUtvidelse1 value) { this.utvidelse = value; } public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) { int currentHashCode = 1; { Long theSkannetInnholdId; theSkannetInnholdId = this.getSkannetInnholdId(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "skannetInnholdId", theSkannetInnholdId), currentHashCode, theSkannetInnholdId); } { Integer theVedleggNr; theVedleggNr = this.getVedleggNr(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "vedleggNr", theVedleggNr), currentHashCode, theVedleggNr); } { String theVedleggInnhold; theVedleggInnhold = this.getVedleggInnhold(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "vedleggInnhold", theVedleggInnhold), currentHashCode, theVedleggInnhold); } { 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); } { SkannetInnholdUtvidelse1 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 SkannetInnhold)) { return false; } if (this == object) { return true; } final SkannetInnhold that = ((SkannetInnhold) object); { Long lhsSkannetInnholdId; lhsSkannetInnholdId = this.getSkannetInnholdId(); Long rhsSkannetInnholdId; rhsSkannetInnholdId = that.getSkannetInnholdId(); if (!strategy.equals(LocatorUtils.property(thisLocator, "skannetInnholdId", lhsSkannetInnholdId), LocatorUtils.property(thatLocator, "skannetInnholdId", rhsSkannetInnholdId), lhsSkannetInnholdId, rhsSkannetInnholdId)) { return false; } } { Integer lhsVedleggNr; lhsVedleggNr = this.getVedleggNr(); Integer rhsVedleggNr; rhsVedleggNr = that.getVedleggNr(); if (!strategy.equals(LocatorUtils.property(thisLocator, "vedleggNr", lhsVedleggNr), LocatorUtils.property(thatLocator, "vedleggNr", rhsVedleggNr), lhsVedleggNr, rhsVedleggNr)) { return false; } } { String lhsVedleggInnhold; lhsVedleggInnhold = this.getVedleggInnhold(); String rhsVedleggInnhold; rhsVedleggInnhold = that.getVedleggInnhold(); if (!strategy.equals(LocatorUtils.property(thisLocator, "vedleggInnhold", lhsVedleggInnhold), LocatorUtils.property(thatLocator, "vedleggInnhold", rhsVedleggInnhold), lhsVedleggInnhold, rhsVedleggInnhold)) { 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; } } { SkannetInnholdUtvidelse1 lhsUtvidelse; lhsUtvidelse = this.getUtvidelse(); SkannetInnholdUtvidelse1 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 theSkannetInnholdId; theSkannetInnholdId = this.getSkannetInnholdId(); strategy.appendField(locator, this, "skannetInnholdId", buffer, theSkannetInnholdId); } { Integer theVedleggNr; theVedleggNr = this.getVedleggNr(); strategy.appendField(locator, this, "vedleggNr", buffer, theVedleggNr); } { String theVedleggInnhold; theVedleggInnhold = this.getVedleggInnhold(); strategy.appendField(locator, this, "vedleggInnhold", buffer, theVedleggInnhold); } { Sporing theSporing; theSporing = this.getSporing(); strategy.appendField(locator, this, "sporing", buffer, theSporing); } { Long theVersjon; theVersjon = this.getVersjon(); strategy.appendField(locator, this, "versjon", buffer, theVersjon); } { SkannetInnholdUtvidelse1 theUtvidelse; theUtvidelse = this.getUtvidelse(); strategy.appendField(locator, this, "utvidelse", buffer, theUtvidelse); } return buffer; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy