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

no.ks.fiks.arkiv.v1.arkivmelding.opprett.Kassasjon Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.6 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2023.06.23 at 10:32:49 AM CEST 
//


package no.ks.fiks.arkiv.v1.arkivmelding.opprett;

import java.time.LocalDate;
import java.util.HashMap;
import java.util.Map;
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 com.kscs.util.jaxb.Buildable;
import com.kscs.util.jaxb.PropertyTree;
import com.kscs.util.jaxb.PropertyTreeUse;
import no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Kassasjonsvedtak;
import org.w3._2001.xmlschema.Adapter3;


/**
 * 

Java class for kassasjon complex type. * *

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

 * <complexType name="kassasjon">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="kassasjonsvedtak" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}kassasjonsvedtak"/>
 *         <element name="kassasjonshjemmel" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}kassasjonshjemmel" minOccurs="0"/>
 *         <element name="bevaringstid" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}bevaringstid"/>
 *         <element name="kassasjonsdato" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}kassasjonsdato"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "kassasjon", propOrder = { "kassasjonsvedtak", "kassasjonshjemmel", "bevaringstid", "kassasjonsdato" }) public class Kassasjon { @XmlElement(required = true) protected Kassasjonsvedtak kassasjonsvedtak; protected String kassasjonshjemmel; protected int bevaringstid; @XmlElement(required = true, type = String.class) @XmlJavaTypeAdapter(Adapter3 .class) @XmlSchemaType(name = "date") protected LocalDate kassasjonsdato; /** * Gets the value of the kassasjonsvedtak property. * * @return * possible object is * {@link Kassasjonsvedtak } * */ public Kassasjonsvedtak getKassasjonsvedtak() { return kassasjonsvedtak; } /** * Sets the value of the kassasjonsvedtak property. * * @param value * allowed object is * {@link Kassasjonsvedtak } * */ public void setKassasjonsvedtak(Kassasjonsvedtak value) { this.kassasjonsvedtak = value; } /** * Gets the value of the kassasjonshjemmel property. * * @return * possible object is * {@link String } * */ public String getKassasjonshjemmel() { return kassasjonshjemmel; } /** * Sets the value of the kassasjonshjemmel property. * * @param value * allowed object is * {@link String } * */ public void setKassasjonshjemmel(String value) { this.kassasjonshjemmel = value; } /** * Gets the value of the bevaringstid property. * */ public int getBevaringstid() { return bevaringstid; } /** * Sets the value of the bevaringstid property. * */ public void setBevaringstid(int value) { this.bevaringstid = value; } /** * Gets the value of the kassasjonsdato property. * * @return * possible object is * {@link String } * */ public LocalDate getKassasjonsdato() { return kassasjonsdato; } /** * Sets the value of the kassasjonsdato property. * * @param value * allowed object is * {@link String } * */ public void setKassasjonsdato(LocalDate value) { this.kassasjonsdato = value; } /** * Copies all state of this object to a builder. This method is used by the {@link * #copyOf} method and should not be called directly by client code. * * @param _other * A builder instance to which the state of this object will be copied. */ public<_B >void copyTo(final Kassasjon.Builder<_B> _other) { _other.kassasjonsvedtak = ((this.kassasjonsvedtak == null)?null:this.kassasjonsvedtak.newCopyBuilder(_other)); _other.kassasjonshjemmel = this.kassasjonshjemmel; _other.bevaringstid = this.bevaringstid; _other.kassasjonsdato = this.kassasjonsdato; } public<_B >Kassasjon.Builder<_B> newCopyBuilder(final _B _parentBuilder) { return new Kassasjon.Builder<_B>(_parentBuilder, this, true); } public Kassasjon.Builder newCopyBuilder() { return newCopyBuilder(null); } public static Kassasjon.Builder builder() { return new Kassasjon.Builder(null, null, false); } public static<_B >Kassasjon.Builder<_B> copyOf(final Kassasjon _other) { final Kassasjon.Builder<_B> _newBuilder = new Kassasjon.Builder<_B>(null, null, false); _other.copyTo(_newBuilder); return _newBuilder; } /** * Copies all state of this object to a builder. This method is used by the {@link * #copyOf} method and should not be called directly by client code. * * @param _other * A builder instance to which the state of this object will be copied. */ public<_B >void copyTo(final Kassasjon.Builder<_B> _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final PropertyTree kassasjonsvedtakPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("kassasjonsvedtak")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(kassasjonsvedtakPropertyTree!= null):((kassasjonsvedtakPropertyTree == null)||(!kassasjonsvedtakPropertyTree.isLeaf())))) { _other.kassasjonsvedtak = ((this.kassasjonsvedtak == null)?null:this.kassasjonsvedtak.newCopyBuilder(_other, kassasjonsvedtakPropertyTree, _propertyTreeUse)); } final PropertyTree kassasjonshjemmelPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("kassasjonshjemmel")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(kassasjonshjemmelPropertyTree!= null):((kassasjonshjemmelPropertyTree == null)||(!kassasjonshjemmelPropertyTree.isLeaf())))) { _other.kassasjonshjemmel = this.kassasjonshjemmel; } final PropertyTree bevaringstidPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("bevaringstid")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(bevaringstidPropertyTree!= null):((bevaringstidPropertyTree == null)||(!bevaringstidPropertyTree.isLeaf())))) { _other.bevaringstid = this.bevaringstid; } final PropertyTree kassasjonsdatoPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("kassasjonsdato")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(kassasjonsdatoPropertyTree!= null):((kassasjonsdatoPropertyTree == null)||(!kassasjonsdatoPropertyTree.isLeaf())))) { _other.kassasjonsdato = this.kassasjonsdato; } } public<_B >Kassasjon.Builder<_B> newCopyBuilder(final _B _parentBuilder, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return new Kassasjon.Builder<_B>(_parentBuilder, this, true, _propertyTree, _propertyTreeUse); } public Kassasjon.Builder newCopyBuilder(final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return newCopyBuilder(null, _propertyTree, _propertyTreeUse); } public static<_B >Kassasjon.Builder<_B> copyOf(final Kassasjon _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final Kassasjon.Builder<_B> _newBuilder = new Kassasjon.Builder<_B>(null, null, false); _other.copyTo(_newBuilder, _propertyTree, _propertyTreeUse); return _newBuilder; } public static Kassasjon.Builder copyExcept(final Kassasjon _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.EXCLUDE); } public static Kassasjon.Builder copyOnly(final Kassasjon _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.INCLUDE); } public static class Builder<_B >implements Buildable { protected final _B _parentBuilder; protected final Kassasjon _storedValue; private Kassasjonsvedtak.Builder> kassasjonsvedtak; private String kassasjonshjemmel; private int bevaringstid; private LocalDate kassasjonsdato; public Builder(final _B _parentBuilder, final Kassasjon _other, final boolean _copy) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; this.kassasjonsvedtak = ((_other.kassasjonsvedtak == null)?null:_other.kassasjonsvedtak.newCopyBuilder(this)); this.kassasjonshjemmel = _other.kassasjonshjemmel; this.bevaringstid = _other.bevaringstid; this.kassasjonsdato = _other.kassasjonsdato; } else { _storedValue = _other; } } else { _storedValue = null; } } public Builder(final _B _parentBuilder, final Kassasjon _other, final boolean _copy, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; final PropertyTree kassasjonsvedtakPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("kassasjonsvedtak")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(kassasjonsvedtakPropertyTree!= null):((kassasjonsvedtakPropertyTree == null)||(!kassasjonsvedtakPropertyTree.isLeaf())))) { this.kassasjonsvedtak = ((_other.kassasjonsvedtak == null)?null:_other.kassasjonsvedtak.newCopyBuilder(this, kassasjonsvedtakPropertyTree, _propertyTreeUse)); } final PropertyTree kassasjonshjemmelPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("kassasjonshjemmel")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(kassasjonshjemmelPropertyTree!= null):((kassasjonshjemmelPropertyTree == null)||(!kassasjonshjemmelPropertyTree.isLeaf())))) { this.kassasjonshjemmel = _other.kassasjonshjemmel; } final PropertyTree bevaringstidPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("bevaringstid")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(bevaringstidPropertyTree!= null):((bevaringstidPropertyTree == null)||(!bevaringstidPropertyTree.isLeaf())))) { this.bevaringstid = _other.bevaringstid; } final PropertyTree kassasjonsdatoPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("kassasjonsdato")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(kassasjonsdatoPropertyTree!= null):((kassasjonsdatoPropertyTree == null)||(!kassasjonsdatoPropertyTree.isLeaf())))) { this.kassasjonsdato = _other.kassasjonsdato; } } else { _storedValue = _other; } } else { _storedValue = null; } } public _B end() { return this._parentBuilder; } protected<_P extends Kassasjon >_P init(final _P _product) { _product.kassasjonsvedtak = ((this.kassasjonsvedtak == null)?null:this.kassasjonsvedtak.build()); _product.kassasjonshjemmel = this.kassasjonshjemmel; _product.bevaringstid = this.bevaringstid; _product.kassasjonsdato = this.kassasjonsdato; return _product; } /** * Sets the new value of "kassasjonsvedtak" (any previous value will be replaced) * * @param kassasjonsvedtak * New value of the "kassasjonsvedtak" property. */ public Kassasjon.Builder<_B> withKassasjonsvedtak(final Kassasjonsvedtak kassasjonsvedtak) { this.kassasjonsvedtak = ((kassasjonsvedtak == null)?null:new Kassasjonsvedtak.Builder>(this, kassasjonsvedtak, false)); return this; } /** * Returns the existing builder or a new builder to build the value of the * "kassasjonsvedtak" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Kassasjonsvedtak.Builder#end()} * to return to the current builder. * * @return * A new builder to build the value of the "kassasjonsvedtak" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Kassasjonsvedtak.Builder#end()} * to return to the current builder. */ public Kassasjonsvedtak.Builder> withKassasjonsvedtak() { if (this.kassasjonsvedtak!= null) { return this.kassasjonsvedtak; } return this.kassasjonsvedtak = new Kassasjonsvedtak.Builder>(this, null, false); } /** * Sets the new value of "kassasjonshjemmel" (any previous value will be replaced) * * @param kassasjonshjemmel * New value of the "kassasjonshjemmel" property. */ public Kassasjon.Builder<_B> withKassasjonshjemmel(final String kassasjonshjemmel) { this.kassasjonshjemmel = kassasjonshjemmel; return this; } /** * Sets the new value of "bevaringstid" (any previous value will be replaced) * * @param bevaringstid * New value of the "bevaringstid" property. */ public Kassasjon.Builder<_B> withBevaringstid(final int bevaringstid) { this.bevaringstid = bevaringstid; return this; } /** * Sets the new value of "kassasjonsdato" (any previous value will be replaced) * * @param kassasjonsdato * New value of the "kassasjonsdato" property. */ public Kassasjon.Builder<_B> withKassasjonsdato(final LocalDate kassasjonsdato) { this.kassasjonsdato = kassasjonsdato; return this; } @Override public Kassasjon build() { if (_storedValue == null) { return this.init(new Kassasjon()); } else { return ((Kassasjon) _storedValue); } } public Kassasjon.Builder<_B> copyOf(final Kassasjon _other) { _other.copyTo(this); return this; } public Kassasjon.Builder<_B> copyOf(final Kassasjon.Builder _other) { return copyOf(_other.build()); } } public static class Select extends Kassasjon.Selector { Select() { super(null, null, null); } public static Kassasjon.Select _root() { return new Kassasjon.Select(); } } public static class Selector , TParent > extends com.kscs.util.jaxb.Selector { private Kassasjonsvedtak.Selector> kassasjonsvedtak = null; private com.kscs.util.jaxb.Selector> kassasjonshjemmel = null; private com.kscs.util.jaxb.Selector> kassasjonsdato = null; public Selector(final TRoot root, final TParent parent, final String propertyName) { super(root, parent, propertyName); } @Override public Map buildChildren() { final Map products = new HashMap(); products.putAll(super.buildChildren()); if (this.kassasjonsvedtak!= null) { products.put("kassasjonsvedtak", this.kassasjonsvedtak.init()); } if (this.kassasjonshjemmel!= null) { products.put("kassasjonshjemmel", this.kassasjonshjemmel.init()); } if (this.kassasjonsdato!= null) { products.put("kassasjonsdato", this.kassasjonsdato.init()); } return products; } public Kassasjonsvedtak.Selector> kassasjonsvedtak() { return ((this.kassasjonsvedtak == null)?this.kassasjonsvedtak = new Kassasjonsvedtak.Selector>(this._root, this, "kassasjonsvedtak"):this.kassasjonsvedtak); } public com.kscs.util.jaxb.Selector> kassasjonshjemmel() { return ((this.kassasjonshjemmel == null)?this.kassasjonshjemmel = new com.kscs.util.jaxb.Selector>(this._root, this, "kassasjonshjemmel"):this.kassasjonshjemmel); } public com.kscs.util.jaxb.Selector> kassasjonsdato() { return ((this.kassasjonsdato == null)?this.kassasjonsdato = new com.kscs.util.jaxb.Selector>(this._root, this, "kassasjonsdato"):this.kassasjonsdato); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy