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

no.nav.tjeneste.virksomhet.behandleoppgave.v1.WSSikkerhetsbegrensningFault Maven / Gradle / Ivy

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

package no.nav.tjeneste.virksomhet.behandleoppgave.v1;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
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;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="feilmelding" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="feilkilde" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "feilmelding", "feilkilde" }) @XmlRootElement(name = "WSSikkerhetsbegrensningFault") public class WSSikkerhetsbegrensningFault implements Equals2, HashCode2 { @XmlElement(required = true, nillable = true) protected String feilmelding; @XmlElement(required = true, nillable = true) protected String feilkilde; /** * Gets the value of the feilmelding property. * * @return * possible object is * {@link String } * */ public String getFeilmelding() { return feilmelding; } /** * Sets the value of the feilmelding property. * * @param value * allowed object is * {@link String } * */ public void setFeilmelding(String value) { this.feilmelding = value; } /** * Gets the value of the feilkilde property. * * @return * possible object is * {@link String } * */ public String getFeilkilde() { return feilkilde; } /** * Sets the value of the feilkilde property. * * @param value * allowed object is * {@link String } * */ public void setFeilkilde(String value) { this.feilkilde = value; } public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { int currentHashCode = 1; { String theFeilmelding; theFeilmelding = this.getFeilmelding(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "feilmelding", theFeilmelding), currentHashCode, theFeilmelding, (this.feilmelding!= null)); } { String theFeilkilde; theFeilkilde = this.getFeilkilde(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "feilkilde", theFeilkilde), currentHashCode, theFeilkilde, (this.feilkilde!= null)); } return currentHashCode; } public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } 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 WSSikkerhetsbegrensningFault that = ((WSSikkerhetsbegrensningFault) object); { String lhsFeilmelding; lhsFeilmelding = this.getFeilmelding(); String rhsFeilmelding; rhsFeilmelding = that.getFeilmelding(); if (!strategy.equals(LocatorUtils.property(thisLocator, "feilmelding", lhsFeilmelding), LocatorUtils.property(thatLocator, "feilmelding", rhsFeilmelding), lhsFeilmelding, rhsFeilmelding, (this.feilmelding!= null), (that.feilmelding!= null))) { return false; } } { String lhsFeilkilde; lhsFeilkilde = this.getFeilkilde(); String rhsFeilkilde; rhsFeilkilde = that.getFeilkilde(); if (!strategy.equals(LocatorUtils.property(thisLocator, "feilkilde", lhsFeilkilde), LocatorUtils.property(thatLocator, "feilkilde", rhsFeilkilde), lhsFeilkilde, rhsFeilkilde, (this.feilkilde!= null), (that.feilkilde!= null))) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public WSSikkerhetsbegrensningFault withFeilmelding(String value) { setFeilmelding(value); return this; } public WSSikkerhetsbegrensningFault withFeilkilde(String value) { setFeilkilde(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy