
no.udi.mt_1067_nav_data.v1.Alias Maven / Gradle / Ivy
package no.udi.mt_1067_nav_data.v1;
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.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.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
/**
* Java class for Alias complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Alias">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Navn" type="{http://udi.no/MT_1067_NAV_Data/v1}PersonNavn" minOccurs="0"/>
* <element name="Fodselsnummer" type="{http://udi.no/Common/v2}Fodselsnummer" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Alias", propOrder = {
"navn",
"fodselsnummer"
})
public class Alias
implements Serializable, Equals, HashCode
{
@XmlElement(name = "Navn")
protected PersonNavn navn;
@XmlElement(name = "Fodselsnummer")
protected String fodselsnummer;
/**
* Gets the value of the navn property.
*
* @return
* possible object is
* {@link PersonNavn }
*
*/
public PersonNavn getNavn() {
return navn;
}
/**
* Sets the value of the navn property.
*
* @param value
* allowed object is
* {@link PersonNavn }
*
*/
public void setNavn(PersonNavn value) {
this.navn = value;
}
/**
* Gets the value of the fodselsnummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFodselsnummer() {
return fodselsnummer;
}
/**
* Sets the value of the fodselsnummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFodselsnummer(String value) {
this.fodselsnummer = value;
}
public Alias withNavn(PersonNavn value) {
setNavn(value);
return this;
}
public Alias withFodselsnummer(String value) {
setFodselsnummer(value);
return this;
}
public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
int currentHashCode = 1;
{
PersonNavn theNavn;
theNavn = this.getNavn();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "navn", theNavn), currentHashCode, theNavn);
}
{
String theFodselsnummer;
theFodselsnummer = this.getFodselsnummer();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "fodselsnummer", theFodselsnummer), currentHashCode, theFodselsnummer);
}
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 Alias)) {
return false;
}
if (this == object) {
return true;
}
final Alias that = ((Alias) object);
{
PersonNavn lhsNavn;
lhsNavn = this.getNavn();
PersonNavn rhsNavn;
rhsNavn = that.getNavn();
if (!strategy.equals(LocatorUtils.property(thisLocator, "navn", lhsNavn), LocatorUtils.property(thatLocator, "navn", rhsNavn), lhsNavn, rhsNavn)) {
return false;
}
}
{
String lhsFodselsnummer;
lhsFodselsnummer = this.getFodselsnummer();
String rhsFodselsnummer;
rhsFodselsnummer = that.getFodselsnummer();
if (!strategy.equals(LocatorUtils.property(thisLocator, "fodselsnummer", lhsFodselsnummer), LocatorUtils.property(thatLocator, "fodselsnummer", rhsFodselsnummer), lhsFodselsnummer, rhsFodselsnummer)) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy