no.nhn.schemas.reg.hprv2.WSHentPersonMedPersonnummer Maven / Gradle / Ivy
package no.nhn.schemas.reg.hprv2;
import java.time.LocalDateTime;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.migesok.jaxb.adapter.javatime.LocalDateTimeXmlAdapter;
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 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="personNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="påTidspunkt" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"personNummer",
"p\u00e5Tidspunkt"
})
@XmlRootElement(name = "HentPersonMedPersonnummer")
public class WSHentPersonMedPersonnummer
implements Equals, HashCode
{
@XmlElement(nillable = true)
protected String personNummer;
@XmlElement(type = String.class, nillable = true)
@XmlJavaTypeAdapter(LocalDateTimeXmlAdapter.class)
@XmlSchemaType(name = "dateTime")
protected LocalDateTime påTidspunkt;
/**
* Gets the value of the personNummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonNummer() {
return personNummer;
}
/**
* Sets the value of the personNummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonNummer(String value) {
this.personNummer = value;
}
/**
* Gets the value of the påTidspunkt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDateTime getPåTidspunkt() {
return påTidspunkt;
}
/**
* Sets the value of the påTidspunkt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPåTidspunkt(LocalDateTime value) {
this.påTidspunkt = value;
}
public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
int currentHashCode = 1;
{
String thePersonNummer;
thePersonNummer = this.getPersonNummer();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "personNummer", thePersonNummer), currentHashCode, thePersonNummer);
}
{
LocalDateTime thePåTidspunkt;
thePåTidspunkt = this.getPåTidspunkt();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "p\u00e5Tidspunkt", thePåTidspunkt), currentHashCode, thePåTidspunkt);
}
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 WSHentPersonMedPersonnummer)) {
return false;
}
if (this == object) {
return true;
}
final WSHentPersonMedPersonnummer that = ((WSHentPersonMedPersonnummer) object);
{
String lhsPersonNummer;
lhsPersonNummer = this.getPersonNummer();
String rhsPersonNummer;
rhsPersonNummer = that.getPersonNummer();
if (!strategy.equals(LocatorUtils.property(thisLocator, "personNummer", lhsPersonNummer), LocatorUtils.property(thatLocator, "personNummer", rhsPersonNummer), lhsPersonNummer, rhsPersonNummer)) {
return false;
}
}
{
LocalDateTime lhsPåTidspunkt;
lhsPåTidspunkt = this.getPåTidspunkt();
LocalDateTime rhsPåTidspunkt;
rhsPåTidspunkt = that.getPåTidspunkt();
if (!strategy.equals(LocatorUtils.property(thisLocator, "p\u00e5Tidspunkt", lhsPåTidspunkt), LocatorUtils.property(thatLocator, "p\u00e5Tidspunkt", rhsPåTidspunkt), lhsPåTidspunkt, rhsPåTidspunkt)) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
public WSHentPersonMedPersonnummer withPersonNummer(String value) {
setPersonNummer(value);
return this;
}
public WSHentPersonMedPersonnummer withPåTidspunkt(LocalDateTime value) {
setPåTidspunkt(value);
return this;
}
}