no.nhn.schemas.reg.hprv2.WSUtdanningsinstitusjonshistorikk Maven / Gradle / Ivy
package no.nhn.schemas.reg.hprv2;
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 no.nhn.schemas.reg.common.no.WSKode;
import no.nhn.schemas.reg.common.no.WSPeriode;
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 Utdanningsinstitusjonshistorikk complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Utdanningsinstitusjonshistorikk">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Gyldig" type="{http://schemas.nhn.no/reg/Common/no}Periode" minOccurs="0"/>
* <element name="Navn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Organisasjonsnummer" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="Type" type="{http://schemas.nhn.no/reg/Common/no}Kode" minOccurs="0"/>
* <element name="YtterligereInformasjon" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Utdanningsinstitusjonshistorikk", propOrder = {
"gyldig",
"navn",
"organisasjonsnummer",
"type",
"ytterligereInformasjon"
})
public class WSUtdanningsinstitusjonshistorikk
implements Equals, HashCode
{
@XmlElement(name = "Gyldig", nillable = true)
protected WSPeriode gyldig;
@XmlElement(name = "Navn", nillable = true)
protected String navn;
@XmlElement(name = "Organisasjonsnummer", nillable = true)
protected Integer organisasjonsnummer;
@XmlElement(name = "Type", nillable = true)
protected WSKode type;
@XmlElement(name = "YtterligereInformasjon", nillable = true)
protected String ytterligereInformasjon;
/**
* Gets the value of the gyldig property.
*
* @return
* possible object is
* {@link WSPeriode }
*
*/
public WSPeriode getGyldig() {
return gyldig;
}
/**
* Sets the value of the gyldig property.
*
* @param value
* allowed object is
* {@link WSPeriode }
*
*/
public void setGyldig(WSPeriode value) {
this.gyldig = value;
}
/**
* Gets the value of the navn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNavn() {
return navn;
}
/**
* Sets the value of the navn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNavn(String value) {
this.navn = value;
}
/**
* Gets the value of the organisasjonsnummer property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getOrganisasjonsnummer() {
return organisasjonsnummer;
}
/**
* Sets the value of the organisasjonsnummer property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setOrganisasjonsnummer(Integer value) {
this.organisasjonsnummer = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link WSKode }
*
*/
public WSKode getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link WSKode }
*
*/
public void setType(WSKode value) {
this.type = value;
}
/**
* Gets the value of the ytterligereInformasjon property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getYtterligereInformasjon() {
return ytterligereInformasjon;
}
/**
* Sets the value of the ytterligereInformasjon property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setYtterligereInformasjon(String value) {
this.ytterligereInformasjon = value;
}
public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
int currentHashCode = 1;
{
WSPeriode theGyldig;
theGyldig = this.getGyldig();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "gyldig", theGyldig), currentHashCode, theGyldig);
}
{
String theNavn;
theNavn = this.getNavn();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "navn", theNavn), currentHashCode, theNavn);
}
{
Integer theOrganisasjonsnummer;
theOrganisasjonsnummer = this.getOrganisasjonsnummer();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "organisasjonsnummer", theOrganisasjonsnummer), currentHashCode, theOrganisasjonsnummer);
}
{
WSKode theType;
theType = this.getType();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "type", theType), currentHashCode, theType);
}
{
String theYtterligereInformasjon;
theYtterligereInformasjon = this.getYtterligereInformasjon();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "ytterligereInformasjon", theYtterligereInformasjon), currentHashCode, theYtterligereInformasjon);
}
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 WSUtdanningsinstitusjonshistorikk)) {
return false;
}
if (this == object) {
return true;
}
final WSUtdanningsinstitusjonshistorikk that = ((WSUtdanningsinstitusjonshistorikk) object);
{
WSPeriode lhsGyldig;
lhsGyldig = this.getGyldig();
WSPeriode rhsGyldig;
rhsGyldig = that.getGyldig();
if (!strategy.equals(LocatorUtils.property(thisLocator, "gyldig", lhsGyldig), LocatorUtils.property(thatLocator, "gyldig", rhsGyldig), lhsGyldig, rhsGyldig)) {
return false;
}
}
{
String lhsNavn;
lhsNavn = this.getNavn();
String rhsNavn;
rhsNavn = that.getNavn();
if (!strategy.equals(LocatorUtils.property(thisLocator, "navn", lhsNavn), LocatorUtils.property(thatLocator, "navn", rhsNavn), lhsNavn, rhsNavn)) {
return false;
}
}
{
Integer lhsOrganisasjonsnummer;
lhsOrganisasjonsnummer = this.getOrganisasjonsnummer();
Integer rhsOrganisasjonsnummer;
rhsOrganisasjonsnummer = that.getOrganisasjonsnummer();
if (!strategy.equals(LocatorUtils.property(thisLocator, "organisasjonsnummer", lhsOrganisasjonsnummer), LocatorUtils.property(thatLocator, "organisasjonsnummer", rhsOrganisasjonsnummer), lhsOrganisasjonsnummer, rhsOrganisasjonsnummer)) {
return false;
}
}
{
WSKode lhsType;
lhsType = this.getType();
WSKode rhsType;
rhsType = that.getType();
if (!strategy.equals(LocatorUtils.property(thisLocator, "type", lhsType), LocatorUtils.property(thatLocator, "type", rhsType), lhsType, rhsType)) {
return false;
}
}
{
String lhsYtterligereInformasjon;
lhsYtterligereInformasjon = this.getYtterligereInformasjon();
String rhsYtterligereInformasjon;
rhsYtterligereInformasjon = that.getYtterligereInformasjon();
if (!strategy.equals(LocatorUtils.property(thisLocator, "ytterligereInformasjon", lhsYtterligereInformasjon), LocatorUtils.property(thatLocator, "ytterligereInformasjon", rhsYtterligereInformasjon), lhsYtterligereInformasjon, rhsYtterligereInformasjon)) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
public WSUtdanningsinstitusjonshistorikk withGyldig(WSPeriode value) {
setGyldig(value);
return this;
}
public WSUtdanningsinstitusjonshistorikk withNavn(String value) {
setNavn(value);
return this;
}
public WSUtdanningsinstitusjonshistorikk withOrganisasjonsnummer(Integer value) {
setOrganisasjonsnummer(value);
return this;
}
public WSUtdanningsinstitusjonshistorikk withType(WSKode value) {
setType(value);
return this;
}
public WSUtdanningsinstitusjonshistorikk withYtterligereInformasjon(String value) {
setYtterligereInformasjon(value);
return this;
}
}