no.nav.gosys.journal.Saksrelasjon 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;
/**
* Saksrelasjonen brukes til å knytte JournalPoster til en saksId. Fordi man skal beholde knytning mellom sak og Journal selv om denne er feilregistrert er relasjonen et eget objekt
*
* Java class for Saksrelasjon complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Saksrelasjon">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="saksrelasjonId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="sakId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="fagsystem" type="{http://nav.no/virksomhet/gjennomforing/arkiv/journal/v2}Fagsystem" minOccurs="0"/>
* <element name="feilregistrert" type="{http://www.w3.org/2001/XMLSchema}boolean" 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}SaksrelasjonUtvidelse1" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Saksrelasjon", propOrder = {
"saksrelasjonId",
"sakId",
"fagsystem",
"feilregistrert",
"sporing",
"versjon",
"utvidelse"
})
public class Saksrelasjon
implements Equals, HashCode, ToString
{
protected Long saksrelasjonId;
protected String sakId;
protected Fagsystem fagsystem;
protected Boolean feilregistrert;
protected Sporing sporing;
protected Long versjon;
protected SaksrelasjonUtvidelse1 utvidelse;
/**
* Gets the value of the saksrelasjonId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSaksrelasjonId() {
return saksrelasjonId;
}
/**
* Sets the value of the saksrelasjonId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSaksrelasjonId(Long value) {
this.saksrelasjonId = value;
}
/**
* Gets the value of the sakId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSakId() {
return sakId;
}
/**
* Sets the value of the sakId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSakId(String value) {
this.sakId = value;
}
/**
* Gets the value of the fagsystem property.
*
* @return
* possible object is
* {@link Fagsystem }
*
*/
public Fagsystem getFagsystem() {
return fagsystem;
}
/**
* Sets the value of the fagsystem property.
*
* @param value
* allowed object is
* {@link Fagsystem }
*
*/
public void setFagsystem(Fagsystem value) {
this.fagsystem = value;
}
/**
* Gets the value of the feilregistrert property.
* This getter has been renamed from isFeilregistrert() to getFeilregistrert() by cxf-xjc-boolean plugin.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getFeilregistrert() {
return feilregistrert;
}
/**
* Sets the value of the feilregistrert property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFeilregistrert(Boolean value) {
this.feilregistrert = 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 SaksrelasjonUtvidelse1 }
*
*/
public SaksrelasjonUtvidelse1 getUtvidelse() {
return utvidelse;
}
/**
* Sets the value of the utvidelse property.
*
* @param value
* allowed object is
* {@link SaksrelasjonUtvidelse1 }
*
*/
public void setUtvidelse(SaksrelasjonUtvidelse1 value) {
this.utvidelse = value;
}
public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
int currentHashCode = 1;
{
Long theSaksrelasjonId;
theSaksrelasjonId = this.getSaksrelasjonId();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "saksrelasjonId", theSaksrelasjonId), currentHashCode, theSaksrelasjonId);
}
{
String theSakId;
theSakId = this.getSakId();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "sakId", theSakId), currentHashCode, theSakId);
}
{
Fagsystem theFagsystem;
theFagsystem = this.getFagsystem();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "fagsystem", theFagsystem), currentHashCode, theFagsystem);
}
{
Boolean theFeilregistrert;
theFeilregistrert = this.getFeilregistrert();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "feilregistrert", theFeilregistrert), currentHashCode, theFeilregistrert);
}
{
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);
}
{
SaksrelasjonUtvidelse1 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 Saksrelasjon)) {
return false;
}
if (this == object) {
return true;
}
final Saksrelasjon that = ((Saksrelasjon) object);
{
Long lhsSaksrelasjonId;
lhsSaksrelasjonId = this.getSaksrelasjonId();
Long rhsSaksrelasjonId;
rhsSaksrelasjonId = that.getSaksrelasjonId();
if (!strategy.equals(LocatorUtils.property(thisLocator, "saksrelasjonId", lhsSaksrelasjonId), LocatorUtils.property(thatLocator, "saksrelasjonId", rhsSaksrelasjonId), lhsSaksrelasjonId, rhsSaksrelasjonId)) {
return false;
}
}
{
String lhsSakId;
lhsSakId = this.getSakId();
String rhsSakId;
rhsSakId = that.getSakId();
if (!strategy.equals(LocatorUtils.property(thisLocator, "sakId", lhsSakId), LocatorUtils.property(thatLocator, "sakId", rhsSakId), lhsSakId, rhsSakId)) {
return false;
}
}
{
Fagsystem lhsFagsystem;
lhsFagsystem = this.getFagsystem();
Fagsystem rhsFagsystem;
rhsFagsystem = that.getFagsystem();
if (!strategy.equals(LocatorUtils.property(thisLocator, "fagsystem", lhsFagsystem), LocatorUtils.property(thatLocator, "fagsystem", rhsFagsystem), lhsFagsystem, rhsFagsystem)) {
return false;
}
}
{
Boolean lhsFeilregistrert;
lhsFeilregistrert = this.getFeilregistrert();
Boolean rhsFeilregistrert;
rhsFeilregistrert = that.getFeilregistrert();
if (!strategy.equals(LocatorUtils.property(thisLocator, "feilregistrert", lhsFeilregistrert), LocatorUtils.property(thatLocator, "feilregistrert", rhsFeilregistrert), lhsFeilregistrert, rhsFeilregistrert)) {
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;
}
}
{
SaksrelasjonUtvidelse1 lhsUtvidelse;
lhsUtvidelse = this.getUtvidelse();
SaksrelasjonUtvidelse1 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 theSaksrelasjonId;
theSaksrelasjonId = this.getSaksrelasjonId();
strategy.appendField(locator, this, "saksrelasjonId", buffer, theSaksrelasjonId);
}
{
String theSakId;
theSakId = this.getSakId();
strategy.appendField(locator, this, "sakId", buffer, theSakId);
}
{
Fagsystem theFagsystem;
theFagsystem = this.getFagsystem();
strategy.appendField(locator, this, "fagsystem", buffer, theFagsystem);
}
{
Boolean theFeilregistrert;
theFeilregistrert = this.getFeilregistrert();
strategy.appendField(locator, this, "feilregistrert", buffer, theFeilregistrert);
}
{
Sporing theSporing;
theSporing = this.getSporing();
strategy.appendField(locator, this, "sporing", buffer, theSporing);
}
{
Long theVersjon;
theVersjon = this.getVersjon();
strategy.appendField(locator, this, "versjon", buffer, theVersjon);
}
{
SaksrelasjonUtvidelse1 theUtvidelse;
theUtvidelse = this.getUtvidelse();
strategy.appendField(locator, this, "utvidelse", buffer, theUtvidelse);
}
return buffer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy