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

no.difi.begrep.sdp.schema_v10.SDPDigitalPostInfo Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.11.06 at 01:54:33 PM UTC 
//


package no.difi.begrep.sdp.schema_v10;

import java.time.LocalDate;
import java.time.ZonedDateTime;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import no.digipost.xsd.jaxb.XSDateAdapter;
import no.digipost.xsd.jaxb.XSDateTimeAdapter;
import no.digipost.xsd.types.HarVarsler;
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.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString2;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy2;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;


/**
 * 

Java class for DigitalPostInfo complex type. * *

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

 * <complexType name="DigitalPostInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice>
 *           <element name="virkningsdato" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *           <element name="virkningstidspunkt" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         </choice>
 *         <element name="aapningskvittering" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="sikkerhetsnivaa" type="{http://begrep.difi.no/sdp/schema_v10}Sikkerhetsnivaa"/>
 *         <element name="ikkeSensitivTittel" type="{http://begrep.difi.no/sdp/schema_v10}Tittel"/>
 *         <element name="varsler" type="{http://begrep.difi.no/sdp/schema_v10}Varsler" minOccurs="0"/>
 *         <element name="maskinportentoken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DigitalPostInfo", propOrder = { "virkningstidspunkt", "virkningsdato", "aapningskvittering", "sikkerhetsnivaa", "ikkeSensitivTittel", "varsler", "maskinportentoken" }) public class SDPDigitalPostInfo implements HarVarsler, Equals2, HashCode2, ToString2 { @XmlElement(type = String.class) @XmlJavaTypeAdapter(XSDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime virkningstidspunkt; @XmlElement(type = String.class) @XmlJavaTypeAdapter(XSDateAdapter.class) @XmlSchemaType(name = "date") protected LocalDate virkningsdato; @XmlElement(defaultValue = "false") protected Boolean aapningskvittering = false; @XmlElement(required = true) @XmlSchemaType(name = "string") protected SDPSikkerhetsnivaa sikkerhetsnivaa; @XmlElement(required = true) protected SDPTittel ikkeSensitivTittel; protected SDPVarsler varsler; protected String maskinportentoken; /** * Default no-arg constructor * */ public SDPDigitalPostInfo() { super(); } /** * Fully-initialising value constructor * */ public SDPDigitalPostInfo(final ZonedDateTime virkningstidspunkt, final LocalDate virkningsdato, final Boolean aapningskvittering, final SDPSikkerhetsnivaa sikkerhetsnivaa, final SDPTittel ikkeSensitivTittel, final SDPVarsler varsler, final String maskinportentoken) { this.virkningstidspunkt = virkningstidspunkt; this.virkningsdato = virkningsdato; this.aapningskvittering = aapningskvittering; this.sikkerhetsnivaa = sikkerhetsnivaa; this.ikkeSensitivTittel = ikkeSensitivTittel; this.varsler = varsler; this.maskinportentoken = maskinportentoken; } /** * Gets the value of the virkningstidspunkt property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getVirkningstidspunkt() { return virkningstidspunkt; } /** * Sets the value of the virkningstidspunkt property. * * @param value * allowed object is * {@link String } * */ public void setVirkningstidspunkt(ZonedDateTime value) { this.virkningstidspunkt = value; } /** * Gets the value of the virkningsdato property. * * @return * possible object is * {@link String } * */ public LocalDate getVirkningsdato() { return virkningsdato; } /** * Sets the value of the virkningsdato property. * * @param value * allowed object is * {@link String } * */ public void setVirkningsdato(LocalDate value) { this.virkningsdato = value; } /** * Gets the value of the aapningskvittering property. * * @return * possible object is * {@link Boolean } * */ public Boolean getAapningskvittering() { return aapningskvittering; } /** * Sets the value of the aapningskvittering property. * * @param value * allowed object is * {@link Boolean } * */ public void setAapningskvittering(Boolean value) { this.aapningskvittering = value; } /** * Gets the value of the sikkerhetsnivaa property. * * @return * possible object is * {@link SDPSikkerhetsnivaa } * */ public SDPSikkerhetsnivaa getSikkerhetsnivaa() { return sikkerhetsnivaa; } /** * Sets the value of the sikkerhetsnivaa property. * * @param value * allowed object is * {@link SDPSikkerhetsnivaa } * */ public void setSikkerhetsnivaa(SDPSikkerhetsnivaa value) { this.sikkerhetsnivaa = value; } /** * Gets the value of the ikkeSensitivTittel property. * * @return * possible object is * {@link SDPTittel } * */ public SDPTittel getIkkeSensitivTittel() { return ikkeSensitivTittel; } /** * Sets the value of the ikkeSensitivTittel property. * * @param value * allowed object is * {@link SDPTittel } * */ public void setIkkeSensitivTittel(SDPTittel value) { this.ikkeSensitivTittel = value; } /** * Gets the value of the varsler property. * * @return * possible object is * {@link SDPVarsler } * */ public SDPVarsler getVarsler() { return varsler; } /** * Sets the value of the varsler property. * * @param value * allowed object is * {@link SDPVarsler } * */ public void setVarsler(SDPVarsler value) { this.varsler = value; } /** * Gets the value of the maskinportentoken property. * * @return * possible object is * {@link String } * */ public String getMaskinportentoken() { return maskinportentoken; } /** * Sets the value of the maskinportentoken property. * * @param value * allowed object is * {@link String } * */ public void setMaskinportentoken(String value) { this.maskinportentoken = value; } @Override public String toString() { final ToStringStrategy2 strategy = JAXBToStringStrategy.getInstance(); final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } @Override public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } @Override public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { { ZonedDateTime theVirkningstidspunkt; theVirkningstidspunkt = this.getVirkningstidspunkt(); strategy.appendField(locator, this, "virkningstidspunkt", buffer, theVirkningstidspunkt, (this.virkningstidspunkt!= null)); } { LocalDate theVirkningsdato; theVirkningsdato = this.getVirkningsdato(); strategy.appendField(locator, this, "virkningsdato", buffer, theVirkningsdato, (this.virkningsdato!= null)); } { Boolean theAapningskvittering; theAapningskvittering = this.getAapningskvittering(); strategy.appendField(locator, this, "aapningskvittering", buffer, theAapningskvittering, (this.aapningskvittering!= null)); } { SDPSikkerhetsnivaa theSikkerhetsnivaa; theSikkerhetsnivaa = this.getSikkerhetsnivaa(); strategy.appendField(locator, this, "sikkerhetsnivaa", buffer, theSikkerhetsnivaa, (this.sikkerhetsnivaa!= null)); } { SDPTittel theIkkeSensitivTittel; theIkkeSensitivTittel = this.getIkkeSensitivTittel(); strategy.appendField(locator, this, "ikkeSensitivTittel", buffer, theIkkeSensitivTittel, (this.ikkeSensitivTittel!= null)); } { SDPVarsler theVarsler; theVarsler = this.getVarsler(); strategy.appendField(locator, this, "varsler", buffer, theVarsler, (this.varsler!= null)); } { String theMaskinportentoken; theMaskinportentoken = this.getMaskinportentoken(); strategy.appendField(locator, this, "maskinportentoken", buffer, theMaskinportentoken, (this.maskinportentoken!= null)); } return buffer; } @Override 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 SDPDigitalPostInfo that = ((SDPDigitalPostInfo) object); { ZonedDateTime lhsVirkningstidspunkt; lhsVirkningstidspunkt = this.getVirkningstidspunkt(); ZonedDateTime rhsVirkningstidspunkt; rhsVirkningstidspunkt = that.getVirkningstidspunkt(); if (!strategy.equals(LocatorUtils.property(thisLocator, "virkningstidspunkt", lhsVirkningstidspunkt), LocatorUtils.property(thatLocator, "virkningstidspunkt", rhsVirkningstidspunkt), lhsVirkningstidspunkt, rhsVirkningstidspunkt, (this.virkningstidspunkt!= null), (that.virkningstidspunkt!= null))) { return false; } } { LocalDate lhsVirkningsdato; lhsVirkningsdato = this.getVirkningsdato(); LocalDate rhsVirkningsdato; rhsVirkningsdato = that.getVirkningsdato(); if (!strategy.equals(LocatorUtils.property(thisLocator, "virkningsdato", lhsVirkningsdato), LocatorUtils.property(thatLocator, "virkningsdato", rhsVirkningsdato), lhsVirkningsdato, rhsVirkningsdato, (this.virkningsdato!= null), (that.virkningsdato!= null))) { return false; } } { Boolean lhsAapningskvittering; lhsAapningskvittering = this.getAapningskvittering(); Boolean rhsAapningskvittering; rhsAapningskvittering = that.getAapningskvittering(); if (!strategy.equals(LocatorUtils.property(thisLocator, "aapningskvittering", lhsAapningskvittering), LocatorUtils.property(thatLocator, "aapningskvittering", rhsAapningskvittering), lhsAapningskvittering, rhsAapningskvittering, (this.aapningskvittering!= null), (that.aapningskvittering!= null))) { return false; } } { SDPSikkerhetsnivaa lhsSikkerhetsnivaa; lhsSikkerhetsnivaa = this.getSikkerhetsnivaa(); SDPSikkerhetsnivaa rhsSikkerhetsnivaa; rhsSikkerhetsnivaa = that.getSikkerhetsnivaa(); if (!strategy.equals(LocatorUtils.property(thisLocator, "sikkerhetsnivaa", lhsSikkerhetsnivaa), LocatorUtils.property(thatLocator, "sikkerhetsnivaa", rhsSikkerhetsnivaa), lhsSikkerhetsnivaa, rhsSikkerhetsnivaa, (this.sikkerhetsnivaa!= null), (that.sikkerhetsnivaa!= null))) { return false; } } { SDPTittel lhsIkkeSensitivTittel; lhsIkkeSensitivTittel = this.getIkkeSensitivTittel(); SDPTittel rhsIkkeSensitivTittel; rhsIkkeSensitivTittel = that.getIkkeSensitivTittel(); if (!strategy.equals(LocatorUtils.property(thisLocator, "ikkeSensitivTittel", lhsIkkeSensitivTittel), LocatorUtils.property(thatLocator, "ikkeSensitivTittel", rhsIkkeSensitivTittel), lhsIkkeSensitivTittel, rhsIkkeSensitivTittel, (this.ikkeSensitivTittel!= null), (that.ikkeSensitivTittel!= null))) { return false; } } { SDPVarsler lhsVarsler; lhsVarsler = this.getVarsler(); SDPVarsler rhsVarsler; rhsVarsler = that.getVarsler(); if (!strategy.equals(LocatorUtils.property(thisLocator, "varsler", lhsVarsler), LocatorUtils.property(thatLocator, "varsler", rhsVarsler), lhsVarsler, rhsVarsler, (this.varsler!= null), (that.varsler!= null))) { return false; } } { String lhsMaskinportentoken; lhsMaskinportentoken = this.getMaskinportentoken(); String rhsMaskinportentoken; rhsMaskinportentoken = that.getMaskinportentoken(); if (!strategy.equals(LocatorUtils.property(thisLocator, "maskinportentoken", lhsMaskinportentoken), LocatorUtils.property(thatLocator, "maskinportentoken", rhsMaskinportentoken), lhsMaskinportentoken, rhsMaskinportentoken, (this.maskinportentoken!= null), (that.maskinportentoken!= null))) { return false; } } return true; } @Override public boolean equals(Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.getInstance(); return equals(null, null, object, strategy); } @Override public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { int currentHashCode = 1; { ZonedDateTime theVirkningstidspunkt; theVirkningstidspunkt = this.getVirkningstidspunkt(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "virkningstidspunkt", theVirkningstidspunkt), currentHashCode, theVirkningstidspunkt, (this.virkningstidspunkt!= null)); } { LocalDate theVirkningsdato; theVirkningsdato = this.getVirkningsdato(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "virkningsdato", theVirkningsdato), currentHashCode, theVirkningsdato, (this.virkningsdato!= null)); } { Boolean theAapningskvittering; theAapningskvittering = this.getAapningskvittering(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "aapningskvittering", theAapningskvittering), currentHashCode, theAapningskvittering, (this.aapningskvittering!= null)); } { SDPSikkerhetsnivaa theSikkerhetsnivaa; theSikkerhetsnivaa = this.getSikkerhetsnivaa(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "sikkerhetsnivaa", theSikkerhetsnivaa), currentHashCode, theSikkerhetsnivaa, (this.sikkerhetsnivaa!= null)); } { SDPTittel theIkkeSensitivTittel; theIkkeSensitivTittel = this.getIkkeSensitivTittel(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "ikkeSensitivTittel", theIkkeSensitivTittel), currentHashCode, theIkkeSensitivTittel, (this.ikkeSensitivTittel!= null)); } { SDPVarsler theVarsler; theVarsler = this.getVarsler(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "varsler", theVarsler), currentHashCode, theVarsler, (this.varsler!= null)); } { String theMaskinportentoken; theMaskinportentoken = this.getMaskinportentoken(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "maskinportentoken", theMaskinportentoken), currentHashCode, theMaskinportentoken, (this.maskinportentoken!= null)); } return currentHashCode; } @Override public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance(); return this.hashCode(null, strategy); } public SDPDigitalPostInfo withVirkningstidspunkt(ZonedDateTime value) { setVirkningstidspunkt(value); return this; } public SDPDigitalPostInfo withVirkningsdato(LocalDate value) { setVirkningsdato(value); return this; } public SDPDigitalPostInfo withAapningskvittering(Boolean value) { setAapningskvittering(value); return this; } public SDPDigitalPostInfo withSikkerhetsnivaa(SDPSikkerhetsnivaa value) { setSikkerhetsnivaa(value); return this; } public SDPDigitalPostInfo withIkkeSensitivTittel(SDPTittel value) { setIkkeSensitivTittel(value); return this; } public SDPDigitalPostInfo withVarsler(SDPVarsler value) { setVarsler(value); return this; } public SDPDigitalPostInfo withMaskinportentoken(String value) { setMaskinportentoken(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy