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

no.ks.fiks.arkiv.v1.arkivstruktur.Arkiv 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.arkivstruktur;

import java.time.ZonedDateTime;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
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.XmlRootElement;
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.Arkivstatus;
import no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Dokumentmedium;
import no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.SystemID;
import org.w3._2001.xmlschema.Adapter1;


/**
 * 

Java class for arkiv complex type. * *

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

 * <complexType name="arkiv">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="systemID" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}systemID"/>
 *         <element name="tittel" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}tittel"/>
 *         <element name="beskrivelse" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}beskrivelse" minOccurs="0"/>
 *         <element name="arkivstatus" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}arkivstatus" minOccurs="0"/>
 *         <element name="dokumentmedium" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}dokumentmedium" minOccurs="0"/>
 *         <element name="oppbevaringssted" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}oppbevaringssted" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="opprettetDato" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}opprettetDato"/>
 *         <element name="opprettetAv" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}opprettetAv"/>
 *         <element name="avsluttetDato" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}avsluttetDato"/>
 *         <element name="avsluttetAv" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}avsluttetAv"/>
 *         <element name="arkivskaper" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/arkivstruktur/v1}arkivskaper" maxOccurs="unbounded"/>
 *         <choice>
 *           <element name="arkiv" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/arkivstruktur/v1}arkiv" maxOccurs="unbounded"/>
 *           <element name="arkivdel" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/arkivstruktur/v1}arkivdel" maxOccurs="unbounded"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "arkiv", propOrder = { "systemID", "tittel", "beskrivelse", "arkivstatus", "dokumentmedium", "oppbevaringssteds", "opprettetDato", "opprettetAv", "avsluttetDato", "avsluttetAv", "arkivskapers", "arkivdels", "arkivs" }) @XmlRootElement(name = "arkiv") public class Arkiv { @XmlElement(required = true) protected SystemID systemID; @XmlElement(required = true) protected String tittel; protected String beskrivelse; protected Arkivstatus arkivstatus; protected Dokumentmedium dokumentmedium; @XmlElement(name = "oppbevaringssted") protected List oppbevaringssteds; @XmlElement(required = true, type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime opprettetDato; @XmlElement(required = true) protected String opprettetAv; @XmlElement(required = true, type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime avsluttetDato; @XmlElement(required = true) protected String avsluttetAv; @XmlElement(name = "arkivskaper", required = true) protected List arkivskapers; @XmlElement(name = "arkivdel") protected List arkivdels; @XmlElement(name = "arkiv") protected List arkivs; /** * Gets the value of the systemID property. * * @return * possible object is * {@link SystemID } * */ public SystemID getSystemID() { return systemID; } /** * Sets the value of the systemID property. * * @param value * allowed object is * {@link SystemID } * */ public void setSystemID(SystemID value) { this.systemID = value; } /** * Gets the value of the tittel property. * * @return * possible object is * {@link String } * */ public String getTittel() { return tittel; } /** * Sets the value of the tittel property. * * @param value * allowed object is * {@link String } * */ public void setTittel(String value) { this.tittel = value; } /** * Gets the value of the beskrivelse property. * * @return * possible object is * {@link String } * */ public String getBeskrivelse() { return beskrivelse; } /** * Sets the value of the beskrivelse property. * * @param value * allowed object is * {@link String } * */ public void setBeskrivelse(String value) { this.beskrivelse = value; } /** * Gets the value of the arkivstatus property. * * @return * possible object is * {@link Arkivstatus } * */ public Arkivstatus getArkivstatus() { return arkivstatus; } /** * Sets the value of the arkivstatus property. * * @param value * allowed object is * {@link Arkivstatus } * */ public void setArkivstatus(Arkivstatus value) { this.arkivstatus = value; } /** * Gets the value of the dokumentmedium property. * * @return * possible object is * {@link Dokumentmedium } * */ public Dokumentmedium getDokumentmedium() { return dokumentmedium; } /** * Sets the value of the dokumentmedium property. * * @param value * allowed object is * {@link Dokumentmedium } * */ public void setDokumentmedium(Dokumentmedium value) { this.dokumentmedium = value; } /** * Gets the value of the oppbevaringssteds property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the oppbevaringssteds property. * *

* For example, to add a new item, do as follows: *

     *    getOppbevaringssteds().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getOppbevaringssteds() { if (oppbevaringssteds == null) { oppbevaringssteds = new ArrayList(); } return this.oppbevaringssteds; } /** * Gets the value of the opprettetDato property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getOpprettetDato() { return opprettetDato; } /** * Sets the value of the opprettetDato property. * * @param value * allowed object is * {@link String } * */ public void setOpprettetDato(ZonedDateTime value) { this.opprettetDato = value; } /** * Gets the value of the opprettetAv property. * * @return * possible object is * {@link String } * */ public String getOpprettetAv() { return opprettetAv; } /** * Sets the value of the opprettetAv property. * * @param value * allowed object is * {@link String } * */ public void setOpprettetAv(String value) { this.opprettetAv = value; } /** * Gets the value of the avsluttetDato property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getAvsluttetDato() { return avsluttetDato; } /** * Sets the value of the avsluttetDato property. * * @param value * allowed object is * {@link String } * */ public void setAvsluttetDato(ZonedDateTime value) { this.avsluttetDato = value; } /** * Gets the value of the avsluttetAv property. * * @return * possible object is * {@link String } * */ public String getAvsluttetAv() { return avsluttetAv; } /** * Sets the value of the avsluttetAv property. * * @param value * allowed object is * {@link String } * */ public void setAvsluttetAv(String value) { this.avsluttetAv = value; } /** * Gets the value of the arkivskapers property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the arkivskapers property. * *

* For example, to add a new item, do as follows: *

     *    getArkivskapers().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Arkivskaper } * * */ public List getArkivskapers() { if (arkivskapers == null) { arkivskapers = new ArrayList(); } return this.arkivskapers; } /** * Gets the value of the arkivdels property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the arkivdels property. * *

* For example, to add a new item, do as follows: *

     *    getArkivdels().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Arkivdel } * * */ public List getArkivdels() { if (arkivdels == null) { arkivdels = new ArrayList(); } return this.arkivdels; } /** * Gets the value of the arkivs property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the arkivs property. * *

* For example, to add a new item, do as follows: *

     *    getArkivs().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Arkiv } * * */ public List getArkivs() { if (arkivs == null) { arkivs = new ArrayList(); } return this.arkivs; } /** * 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 Arkiv.Builder<_B> _other) { _other.systemID = ((this.systemID == null)?null:this.systemID.newCopyBuilder(_other)); _other.tittel = this.tittel; _other.beskrivelse = this.beskrivelse; _other.arkivstatus = ((this.arkivstatus == null)?null:this.arkivstatus.newCopyBuilder(_other)); _other.dokumentmedium = ((this.dokumentmedium == null)?null:this.dokumentmedium.newCopyBuilder(_other)); if (this.oppbevaringssteds == null) { _other.oppbevaringssteds = null; } else { _other.oppbevaringssteds = new ArrayList(); for (String _item: this.oppbevaringssteds) { _other.oppbevaringssteds.add(((_item == null)?null:new Buildable.PrimitiveBuildable(_item))); } } _other.opprettetDato = this.opprettetDato; _other.opprettetAv = this.opprettetAv; _other.avsluttetDato = this.avsluttetDato; _other.avsluttetAv = this.avsluttetAv; if (this.arkivskapers == null) { _other.arkivskapers = null; } else { _other.arkivskapers = new ArrayList>>(); for (Arkivskaper _item: this.arkivskapers) { _other.arkivskapers.add(((_item == null)?null:_item.newCopyBuilder(_other))); } } if (this.arkivdels == null) { _other.arkivdels = null; } else { _other.arkivdels = new ArrayList>>(); for (Arkivdel _item: this.arkivdels) { _other.arkivdels.add(((_item == null)?null:_item.newCopyBuilder(_other))); } } if (this.arkivs == null) { _other.arkivs = null; } else { _other.arkivs = new ArrayList>>(); for (Arkiv _item: this.arkivs) { _other.arkivs.add(((_item == null)?null:_item.newCopyBuilder(_other))); } } } public<_B >Arkiv.Builder<_B> newCopyBuilder(final _B _parentBuilder) { return new Arkiv.Builder<_B>(_parentBuilder, this, true); } public Arkiv.Builder newCopyBuilder() { return newCopyBuilder(null); } public static Arkiv.Builder builder() { return new Arkiv.Builder(null, null, false); } public static<_B >Arkiv.Builder<_B> copyOf(final Arkiv _other) { final Arkiv.Builder<_B> _newBuilder = new Arkiv.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 Arkiv.Builder<_B> _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final PropertyTree systemIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("systemID")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(systemIDPropertyTree!= null):((systemIDPropertyTree == null)||(!systemIDPropertyTree.isLeaf())))) { _other.systemID = ((this.systemID == null)?null:this.systemID.newCopyBuilder(_other, systemIDPropertyTree, _propertyTreeUse)); } final PropertyTree tittelPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("tittel")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(tittelPropertyTree!= null):((tittelPropertyTree == null)||(!tittelPropertyTree.isLeaf())))) { _other.tittel = this.tittel; } final PropertyTree beskrivelsePropertyTree = ((_propertyTree == null)?null:_propertyTree.get("beskrivelse")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(beskrivelsePropertyTree!= null):((beskrivelsePropertyTree == null)||(!beskrivelsePropertyTree.isLeaf())))) { _other.beskrivelse = this.beskrivelse; } final PropertyTree arkivstatusPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivstatus")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivstatusPropertyTree!= null):((arkivstatusPropertyTree == null)||(!arkivstatusPropertyTree.isLeaf())))) { _other.arkivstatus = ((this.arkivstatus == null)?null:this.arkivstatus.newCopyBuilder(_other, arkivstatusPropertyTree, _propertyTreeUse)); } final PropertyTree dokumentmediumPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("dokumentmedium")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(dokumentmediumPropertyTree!= null):((dokumentmediumPropertyTree == null)||(!dokumentmediumPropertyTree.isLeaf())))) { _other.dokumentmedium = ((this.dokumentmedium == null)?null:this.dokumentmedium.newCopyBuilder(_other, dokumentmediumPropertyTree, _propertyTreeUse)); } final PropertyTree oppbevaringsstedsPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("oppbevaringssteds")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(oppbevaringsstedsPropertyTree!= null):((oppbevaringsstedsPropertyTree == null)||(!oppbevaringsstedsPropertyTree.isLeaf())))) { if (this.oppbevaringssteds == null) { _other.oppbevaringssteds = null; } else { _other.oppbevaringssteds = new ArrayList(); for (String _item: this.oppbevaringssteds) { _other.oppbevaringssteds.add(((_item == null)?null:new Buildable.PrimitiveBuildable(_item))); } } } final PropertyTree opprettetDatoPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("opprettetDato")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(opprettetDatoPropertyTree!= null):((opprettetDatoPropertyTree == null)||(!opprettetDatoPropertyTree.isLeaf())))) { _other.opprettetDato = this.opprettetDato; } final PropertyTree opprettetAvPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("opprettetAv")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(opprettetAvPropertyTree!= null):((opprettetAvPropertyTree == null)||(!opprettetAvPropertyTree.isLeaf())))) { _other.opprettetAv = this.opprettetAv; } final PropertyTree avsluttetDatoPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("avsluttetDato")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(avsluttetDatoPropertyTree!= null):((avsluttetDatoPropertyTree == null)||(!avsluttetDatoPropertyTree.isLeaf())))) { _other.avsluttetDato = this.avsluttetDato; } final PropertyTree avsluttetAvPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("avsluttetAv")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(avsluttetAvPropertyTree!= null):((avsluttetAvPropertyTree == null)||(!avsluttetAvPropertyTree.isLeaf())))) { _other.avsluttetAv = this.avsluttetAv; } final PropertyTree arkivskapersPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivskapers")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivskapersPropertyTree!= null):((arkivskapersPropertyTree == null)||(!arkivskapersPropertyTree.isLeaf())))) { if (this.arkivskapers == null) { _other.arkivskapers = null; } else { _other.arkivskapers = new ArrayList>>(); for (Arkivskaper _item: this.arkivskapers) { _other.arkivskapers.add(((_item == null)?null:_item.newCopyBuilder(_other, arkivskapersPropertyTree, _propertyTreeUse))); } } } final PropertyTree arkivdelsPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivdels")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivdelsPropertyTree!= null):((arkivdelsPropertyTree == null)||(!arkivdelsPropertyTree.isLeaf())))) { if (this.arkivdels == null) { _other.arkivdels = null; } else { _other.arkivdels = new ArrayList>>(); for (Arkivdel _item: this.arkivdels) { _other.arkivdels.add(((_item == null)?null:_item.newCopyBuilder(_other, arkivdelsPropertyTree, _propertyTreeUse))); } } } final PropertyTree arkivsPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivs")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivsPropertyTree!= null):((arkivsPropertyTree == null)||(!arkivsPropertyTree.isLeaf())))) { if (this.arkivs == null) { _other.arkivs = null; } else { _other.arkivs = new ArrayList>>(); for (Arkiv _item: this.arkivs) { _other.arkivs.add(((_item == null)?null:_item.newCopyBuilder(_other, arkivsPropertyTree, _propertyTreeUse))); } } } } public<_B >Arkiv.Builder<_B> newCopyBuilder(final _B _parentBuilder, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return new Arkiv.Builder<_B>(_parentBuilder, this, true, _propertyTree, _propertyTreeUse); } public Arkiv.Builder newCopyBuilder(final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return newCopyBuilder(null, _propertyTree, _propertyTreeUse); } public static<_B >Arkiv.Builder<_B> copyOf(final Arkiv _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final Arkiv.Builder<_B> _newBuilder = new Arkiv.Builder<_B>(null, null, false); _other.copyTo(_newBuilder, _propertyTree, _propertyTreeUse); return _newBuilder; } public static Arkiv.Builder copyExcept(final Arkiv _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.EXCLUDE); } public static Arkiv.Builder copyOnly(final Arkiv _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.INCLUDE); } public static class Builder<_B >implements Buildable { protected final _B _parentBuilder; protected final Arkiv _storedValue; private SystemID.Builder> systemID; private String tittel; private String beskrivelse; private Arkivstatus.Builder> arkivstatus; private Dokumentmedium.Builder> dokumentmedium; private List oppbevaringssteds; private ZonedDateTime opprettetDato; private String opprettetAv; private ZonedDateTime avsluttetDato; private String avsluttetAv; private List>> arkivskapers; private List>> arkivdels; private List>> arkivs; public Builder(final _B _parentBuilder, final Arkiv _other, final boolean _copy) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; this.systemID = ((_other.systemID == null)?null:_other.systemID.newCopyBuilder(this)); this.tittel = _other.tittel; this.beskrivelse = _other.beskrivelse; this.arkivstatus = ((_other.arkivstatus == null)?null:_other.arkivstatus.newCopyBuilder(this)); this.dokumentmedium = ((_other.dokumentmedium == null)?null:_other.dokumentmedium.newCopyBuilder(this)); if (_other.oppbevaringssteds == null) { this.oppbevaringssteds = null; } else { this.oppbevaringssteds = new ArrayList(); for (String _item: _other.oppbevaringssteds) { this.oppbevaringssteds.add(((_item == null)?null:new Buildable.PrimitiveBuildable(_item))); } } this.opprettetDato = _other.opprettetDato; this.opprettetAv = _other.opprettetAv; this.avsluttetDato = _other.avsluttetDato; this.avsluttetAv = _other.avsluttetAv; if (_other.arkivskapers == null) { this.arkivskapers = null; } else { this.arkivskapers = new ArrayList>>(); for (Arkivskaper _item: _other.arkivskapers) { this.arkivskapers.add(((_item == null)?null:_item.newCopyBuilder(this))); } } if (_other.arkivdels == null) { this.arkivdels = null; } else { this.arkivdels = new ArrayList>>(); for (Arkivdel _item: _other.arkivdels) { this.arkivdels.add(((_item == null)?null:_item.newCopyBuilder(this))); } } if (_other.arkivs == null) { this.arkivs = null; } else { this.arkivs = new ArrayList>>(); for (Arkiv _item: _other.arkivs) { this.arkivs.add(((_item == null)?null:_item.newCopyBuilder(this))); } } } else { _storedValue = _other; } } else { _storedValue = null; } } public Builder(final _B _parentBuilder, final Arkiv _other, final boolean _copy, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; final PropertyTree systemIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("systemID")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(systemIDPropertyTree!= null):((systemIDPropertyTree == null)||(!systemIDPropertyTree.isLeaf())))) { this.systemID = ((_other.systemID == null)?null:_other.systemID.newCopyBuilder(this, systemIDPropertyTree, _propertyTreeUse)); } final PropertyTree tittelPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("tittel")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(tittelPropertyTree!= null):((tittelPropertyTree == null)||(!tittelPropertyTree.isLeaf())))) { this.tittel = _other.tittel; } final PropertyTree beskrivelsePropertyTree = ((_propertyTree == null)?null:_propertyTree.get("beskrivelse")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(beskrivelsePropertyTree!= null):((beskrivelsePropertyTree == null)||(!beskrivelsePropertyTree.isLeaf())))) { this.beskrivelse = _other.beskrivelse; } final PropertyTree arkivstatusPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivstatus")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivstatusPropertyTree!= null):((arkivstatusPropertyTree == null)||(!arkivstatusPropertyTree.isLeaf())))) { this.arkivstatus = ((_other.arkivstatus == null)?null:_other.arkivstatus.newCopyBuilder(this, arkivstatusPropertyTree, _propertyTreeUse)); } final PropertyTree dokumentmediumPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("dokumentmedium")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(dokumentmediumPropertyTree!= null):((dokumentmediumPropertyTree == null)||(!dokumentmediumPropertyTree.isLeaf())))) { this.dokumentmedium = ((_other.dokumentmedium == null)?null:_other.dokumentmedium.newCopyBuilder(this, dokumentmediumPropertyTree, _propertyTreeUse)); } final PropertyTree oppbevaringsstedsPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("oppbevaringssteds")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(oppbevaringsstedsPropertyTree!= null):((oppbevaringsstedsPropertyTree == null)||(!oppbevaringsstedsPropertyTree.isLeaf())))) { if (_other.oppbevaringssteds == null) { this.oppbevaringssteds = null; } else { this.oppbevaringssteds = new ArrayList(); for (String _item: _other.oppbevaringssteds) { this.oppbevaringssteds.add(((_item == null)?null:new Buildable.PrimitiveBuildable(_item))); } } } final PropertyTree opprettetDatoPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("opprettetDato")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(opprettetDatoPropertyTree!= null):((opprettetDatoPropertyTree == null)||(!opprettetDatoPropertyTree.isLeaf())))) { this.opprettetDato = _other.opprettetDato; } final PropertyTree opprettetAvPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("opprettetAv")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(opprettetAvPropertyTree!= null):((opprettetAvPropertyTree == null)||(!opprettetAvPropertyTree.isLeaf())))) { this.opprettetAv = _other.opprettetAv; } final PropertyTree avsluttetDatoPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("avsluttetDato")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(avsluttetDatoPropertyTree!= null):((avsluttetDatoPropertyTree == null)||(!avsluttetDatoPropertyTree.isLeaf())))) { this.avsluttetDato = _other.avsluttetDato; } final PropertyTree avsluttetAvPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("avsluttetAv")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(avsluttetAvPropertyTree!= null):((avsluttetAvPropertyTree == null)||(!avsluttetAvPropertyTree.isLeaf())))) { this.avsluttetAv = _other.avsluttetAv; } final PropertyTree arkivskapersPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivskapers")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivskapersPropertyTree!= null):((arkivskapersPropertyTree == null)||(!arkivskapersPropertyTree.isLeaf())))) { if (_other.arkivskapers == null) { this.arkivskapers = null; } else { this.arkivskapers = new ArrayList>>(); for (Arkivskaper _item: _other.arkivskapers) { this.arkivskapers.add(((_item == null)?null:_item.newCopyBuilder(this, arkivskapersPropertyTree, _propertyTreeUse))); } } } final PropertyTree arkivdelsPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivdels")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivdelsPropertyTree!= null):((arkivdelsPropertyTree == null)||(!arkivdelsPropertyTree.isLeaf())))) { if (_other.arkivdels == null) { this.arkivdels = null; } else { this.arkivdels = new ArrayList>>(); for (Arkivdel _item: _other.arkivdels) { this.arkivdels.add(((_item == null)?null:_item.newCopyBuilder(this, arkivdelsPropertyTree, _propertyTreeUse))); } } } final PropertyTree arkivsPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivs")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivsPropertyTree!= null):((arkivsPropertyTree == null)||(!arkivsPropertyTree.isLeaf())))) { if (_other.arkivs == null) { this.arkivs = null; } else { this.arkivs = new ArrayList>>(); for (Arkiv _item: _other.arkivs) { this.arkivs.add(((_item == null)?null:_item.newCopyBuilder(this, arkivsPropertyTree, _propertyTreeUse))); } } } } else { _storedValue = _other; } } else { _storedValue = null; } } public _B end() { return this._parentBuilder; } protected<_P extends Arkiv >_P init(final _P _product) { _product.systemID = ((this.systemID == null)?null:this.systemID.build()); _product.tittel = this.tittel; _product.beskrivelse = this.beskrivelse; _product.arkivstatus = ((this.arkivstatus == null)?null:this.arkivstatus.build()); _product.dokumentmedium = ((this.dokumentmedium == null)?null:this.dokumentmedium.build()); if (this.oppbevaringssteds!= null) { final List oppbevaringssteds = new ArrayList(this.oppbevaringssteds.size()); for (Buildable _item: this.oppbevaringssteds) { oppbevaringssteds.add(((String) _item.build())); } _product.oppbevaringssteds = oppbevaringssteds; } _product.opprettetDato = this.opprettetDato; _product.opprettetAv = this.opprettetAv; _product.avsluttetDato = this.avsluttetDato; _product.avsluttetAv = this.avsluttetAv; if (this.arkivskapers!= null) { final List arkivskapers = new ArrayList(this.arkivskapers.size()); for (Arkivskaper.Builder> _item: this.arkivskapers) { arkivskapers.add(_item.build()); } _product.arkivskapers = arkivskapers; } if (this.arkivdels!= null) { final List arkivdels = new ArrayList(this.arkivdels.size()); for (Arkivdel.Builder> _item: this.arkivdels) { arkivdels.add(_item.build()); } _product.arkivdels = arkivdels; } if (this.arkivs!= null) { final List arkivs = new ArrayList(this.arkivs.size()); for (Arkiv.Builder> _item: this.arkivs) { arkivs.add(_item.build()); } _product.arkivs = arkivs; } return _product; } /** * Sets the new value of "systemID" (any previous value will be replaced) * * @param systemID * New value of the "systemID" property. */ public Arkiv.Builder<_B> withSystemID(final SystemID systemID) { this.systemID = ((systemID == null)?null:new SystemID.Builder>(this, systemID, false)); return this; } /** * Returns the existing builder or a new builder to build the value of the * "systemID" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.SystemID.Builder#end()} to * return to the current builder. * * @return * A new builder to build the value of the "systemID" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.SystemID.Builder#end()} to * return to the current builder. */ public SystemID.Builder> withSystemID() { if (this.systemID!= null) { return this.systemID; } return this.systemID = new SystemID.Builder>(this, null, false); } /** * Sets the new value of "tittel" (any previous value will be replaced) * * @param tittel * New value of the "tittel" property. */ public Arkiv.Builder<_B> withTittel(final String tittel) { this.tittel = tittel; return this; } /** * Sets the new value of "beskrivelse" (any previous value will be replaced) * * @param beskrivelse * New value of the "beskrivelse" property. */ public Arkiv.Builder<_B> withBeskrivelse(final String beskrivelse) { this.beskrivelse = beskrivelse; return this; } /** * Sets the new value of "arkivstatus" (any previous value will be replaced) * * @param arkivstatus * New value of the "arkivstatus" property. */ public Arkiv.Builder<_B> withArkivstatus(final Arkivstatus arkivstatus) { this.arkivstatus = ((arkivstatus == null)?null:new Arkivstatus.Builder>(this, arkivstatus, false)); return this; } /** * Returns the existing builder or a new builder to build the value of the * "arkivstatus" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Arkivstatus.Builder#end()} to * return to the current builder. * * @return * A new builder to build the value of the "arkivstatus" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Arkivstatus.Builder#end()} to * return to the current builder. */ public Arkivstatus.Builder> withArkivstatus() { if (this.arkivstatus!= null) { return this.arkivstatus; } return this.arkivstatus = new Arkivstatus.Builder>(this, null, false); } /** * Sets the new value of "dokumentmedium" (any previous value will be replaced) * * @param dokumentmedium * New value of the "dokumentmedium" property. */ public Arkiv.Builder<_B> withDokumentmedium(final Dokumentmedium dokumentmedium) { this.dokumentmedium = ((dokumentmedium == null)?null:new Dokumentmedium.Builder>(this, dokumentmedium, false)); return this; } /** * Returns the existing builder or a new builder to build the value of the * "dokumentmedium" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Dokumentmedium.Builder#end()} * to return to the current builder. * * @return * A new builder to build the value of the "dokumentmedium" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Dokumentmedium.Builder#end()} * to return to the current builder. */ public Dokumentmedium.Builder> withDokumentmedium() { if (this.dokumentmedium!= null) { return this.dokumentmedium; } return this.dokumentmedium = new Dokumentmedium.Builder>(this, null, false); } /** * Adds the given items to the value of "oppbevaringssteds" * * @param oppbevaringssteds * Items to add to the value of the "oppbevaringssteds" property */ public Arkiv.Builder<_B> addOppbevaringssteds(final Iterable oppbevaringssteds) { if (oppbevaringssteds!= null) { if (this.oppbevaringssteds == null) { this.oppbevaringssteds = new ArrayList(); } for (String _item: oppbevaringssteds) { this.oppbevaringssteds.add(new Buildable.PrimitiveBuildable(_item)); } } return this; } /** * Sets the new value of "oppbevaringssteds" (any previous value will be replaced) * * @param oppbevaringssteds * New value of the "oppbevaringssteds" property. */ public Arkiv.Builder<_B> withOppbevaringssteds(final Iterable oppbevaringssteds) { if (this.oppbevaringssteds!= null) { this.oppbevaringssteds.clear(); } return addOppbevaringssteds(oppbevaringssteds); } /** * Adds the given items to the value of "oppbevaringssteds" * * @param oppbevaringssteds * Items to add to the value of the "oppbevaringssteds" property */ public Arkiv.Builder<_B> addOppbevaringssteds(String... oppbevaringssteds) { addOppbevaringssteds(Arrays.asList(oppbevaringssteds)); return this; } /** * Sets the new value of "oppbevaringssteds" (any previous value will be replaced) * * @param oppbevaringssteds * New value of the "oppbevaringssteds" property. */ public Arkiv.Builder<_B> withOppbevaringssteds(String... oppbevaringssteds) { withOppbevaringssteds(Arrays.asList(oppbevaringssteds)); return this; } /** * Sets the new value of "opprettetDato" (any previous value will be replaced) * * @param opprettetDato * New value of the "opprettetDato" property. */ public Arkiv.Builder<_B> withOpprettetDato(final ZonedDateTime opprettetDato) { this.opprettetDato = opprettetDato; return this; } /** * Sets the new value of "opprettetAv" (any previous value will be replaced) * * @param opprettetAv * New value of the "opprettetAv" property. */ public Arkiv.Builder<_B> withOpprettetAv(final String opprettetAv) { this.opprettetAv = opprettetAv; return this; } /** * Sets the new value of "avsluttetDato" (any previous value will be replaced) * * @param avsluttetDato * New value of the "avsluttetDato" property. */ public Arkiv.Builder<_B> withAvsluttetDato(final ZonedDateTime avsluttetDato) { this.avsluttetDato = avsluttetDato; return this; } /** * Sets the new value of "avsluttetAv" (any previous value will be replaced) * * @param avsluttetAv * New value of the "avsluttetAv" property. */ public Arkiv.Builder<_B> withAvsluttetAv(final String avsluttetAv) { this.avsluttetAv = avsluttetAv; return this; } /** * Adds the given items to the value of "arkivskapers" * * @param arkivskapers * Items to add to the value of the "arkivskapers" property */ public Arkiv.Builder<_B> addArkivskapers(final Iterable arkivskapers) { if (arkivskapers!= null) { if (this.arkivskapers == null) { this.arkivskapers = new ArrayList>>(); } for (Arkivskaper _item: arkivskapers) { this.arkivskapers.add(new Arkivskaper.Builder>(this, _item, false)); } } return this; } /** * Sets the new value of "arkivskapers" (any previous value will be replaced) * * @param arkivskapers * New value of the "arkivskapers" property. */ public Arkiv.Builder<_B> withArkivskapers(final Iterable arkivskapers) { if (this.arkivskapers!= null) { this.arkivskapers.clear(); } return addArkivskapers(arkivskapers); } /** * Adds the given items to the value of "arkivskapers" * * @param arkivskapers * Items to add to the value of the "arkivskapers" property */ public Arkiv.Builder<_B> addArkivskapers(Arkivskaper... arkivskapers) { addArkivskapers(Arrays.asList(arkivskapers)); return this; } /** * Sets the new value of "arkivskapers" (any previous value will be replaced) * * @param arkivskapers * New value of the "arkivskapers" property. */ public Arkiv.Builder<_B> withArkivskapers(Arkivskaper... arkivskapers) { withArkivskapers(Arrays.asList(arkivskapers)); return this; } /** * Returns a new builder to build an additional value of the "Arkivskapers" * property. * Use {@link no.ks.fiks.arkiv.v1.arkivstruktur.Arkivskaper.Builder#end()} to * return to the current builder. * * @return * a new builder to build an additional value of the "Arkivskapers" property. * Use {@link no.ks.fiks.arkiv.v1.arkivstruktur.Arkivskaper.Builder#end()} to * return to the current builder. */ public Arkivskaper.Builder> addArkivskapers() { if (this.arkivskapers == null) { this.arkivskapers = new ArrayList>>(); } final Arkivskaper.Builder> arkivskapers_Builder = new Arkivskaper.Builder>(this, null, false); this.arkivskapers.add(arkivskapers_Builder); return arkivskapers_Builder; } /** * Adds the given items to the value of "arkivdels" * * @param arkivdels * Items to add to the value of the "arkivdels" property */ public Arkiv.Builder<_B> addArkivdels(final Iterable arkivdels) { if (arkivdels!= null) { if (this.arkivdels == null) { this.arkivdels = new ArrayList>>(); } for (Arkivdel _item: arkivdels) { this.arkivdels.add(new Arkivdel.Builder>(this, _item, false)); } } return this; } /** * Sets the new value of "arkivdels" (any previous value will be replaced) * * @param arkivdels * New value of the "arkivdels" property. */ public Arkiv.Builder<_B> withArkivdels(final Iterable arkivdels) { if (this.arkivdels!= null) { this.arkivdels.clear(); } return addArkivdels(arkivdels); } /** * Adds the given items to the value of "arkivdels" * * @param arkivdels * Items to add to the value of the "arkivdels" property */ public Arkiv.Builder<_B> addArkivdels(Arkivdel... arkivdels) { addArkivdels(Arrays.asList(arkivdels)); return this; } /** * Sets the new value of "arkivdels" (any previous value will be replaced) * * @param arkivdels * New value of the "arkivdels" property. */ public Arkiv.Builder<_B> withArkivdels(Arkivdel... arkivdels) { withArkivdels(Arrays.asList(arkivdels)); return this; } /** * Returns a new builder to build an additional value of the "Arkivdels" property. * Use {@link no.ks.fiks.arkiv.v1.arkivstruktur.Arkivdel.Builder#end()} to return * to the current builder. * * @return * a new builder to build an additional value of the "Arkivdels" property. * Use {@link no.ks.fiks.arkiv.v1.arkivstruktur.Arkivdel.Builder#end()} to return * to the current builder. */ public Arkivdel.Builder> addArkivdels() { if (this.arkivdels == null) { this.arkivdels = new ArrayList>>(); } final Arkivdel.Builder> arkivdels_Builder = new Arkivdel.Builder>(this, null, false); this.arkivdels.add(arkivdels_Builder); return arkivdels_Builder; } /** * Adds the given items to the value of "arkivs" * * @param arkivs * Items to add to the value of the "arkivs" property */ public Arkiv.Builder<_B> addArkivs(final Iterable arkivs) { if (arkivs!= null) { if (this.arkivs == null) { this.arkivs = new ArrayList>>(); } for (Arkiv _item: arkivs) { this.arkivs.add(new Arkiv.Builder>(this, _item, false)); } } return this; } /** * Sets the new value of "arkivs" (any previous value will be replaced) * * @param arkivs * New value of the "arkivs" property. */ public Arkiv.Builder<_B> withArkivs(final Iterable arkivs) { if (this.arkivs!= null) { this.arkivs.clear(); } return addArkivs(arkivs); } /** * Adds the given items to the value of "arkivs" * * @param arkivs * Items to add to the value of the "arkivs" property */ public Arkiv.Builder<_B> addArkivs(Arkiv... arkivs) { addArkivs(Arrays.asList(arkivs)); return this; } /** * Sets the new value of "arkivs" (any previous value will be replaced) * * @param arkivs * New value of the "arkivs" property. */ public Arkiv.Builder<_B> withArkivs(Arkiv... arkivs) { withArkivs(Arrays.asList(arkivs)); return this; } /** * Returns a new builder to build an additional value of the "Arkivs" property. * Use {@link no.ks.fiks.arkiv.v1.arkivstruktur.Arkiv.Builder#end()} to return to * the current builder. * * @return * a new builder to build an additional value of the "Arkivs" property. * Use {@link no.ks.fiks.arkiv.v1.arkivstruktur.Arkiv.Builder#end()} to return to * the current builder. */ public Arkiv.Builder> addArkivs() { if (this.arkivs == null) { this.arkivs = new ArrayList>>(); } final Arkiv.Builder> arkivs_Builder = new Arkiv.Builder>(this, null, false); this.arkivs.add(arkivs_Builder); return arkivs_Builder; } @Override public Arkiv build() { if (_storedValue == null) { return this.init(new Arkiv()); } else { return ((Arkiv) _storedValue); } } public Arkiv.Builder<_B> copyOf(final Arkiv _other) { _other.copyTo(this); return this; } public Arkiv.Builder<_B> copyOf(final Arkiv.Builder _other) { return copyOf(_other.build()); } } public static class Select extends Arkiv.Selector { Select() { super(null, null, null); } public static Arkiv.Select _root() { return new Arkiv.Select(); } } public static class Selector , TParent > extends com.kscs.util.jaxb.Selector { private SystemID.Selector> systemID = null; private com.kscs.util.jaxb.Selector> tittel = null; private com.kscs.util.jaxb.Selector> beskrivelse = null; private Arkivstatus.Selector> arkivstatus = null; private Dokumentmedium.Selector> dokumentmedium = null; private com.kscs.util.jaxb.Selector> oppbevaringssteds = null; private com.kscs.util.jaxb.Selector> opprettetDato = null; private com.kscs.util.jaxb.Selector> opprettetAv = null; private com.kscs.util.jaxb.Selector> avsluttetDato = null; private com.kscs.util.jaxb.Selector> avsluttetAv = null; private Arkivskaper.Selector> arkivskapers = null; private Arkivdel.Selector> arkivdels = null; private Arkiv.Selector> arkivs = 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.systemID!= null) { products.put("systemID", this.systemID.init()); } if (this.tittel!= null) { products.put("tittel", this.tittel.init()); } if (this.beskrivelse!= null) { products.put("beskrivelse", this.beskrivelse.init()); } if (this.arkivstatus!= null) { products.put("arkivstatus", this.arkivstatus.init()); } if (this.dokumentmedium!= null) { products.put("dokumentmedium", this.dokumentmedium.init()); } if (this.oppbevaringssteds!= null) { products.put("oppbevaringssteds", this.oppbevaringssteds.init()); } if (this.opprettetDato!= null) { products.put("opprettetDato", this.opprettetDato.init()); } if (this.opprettetAv!= null) { products.put("opprettetAv", this.opprettetAv.init()); } if (this.avsluttetDato!= null) { products.put("avsluttetDato", this.avsluttetDato.init()); } if (this.avsluttetAv!= null) { products.put("avsluttetAv", this.avsluttetAv.init()); } if (this.arkivskapers!= null) { products.put("arkivskapers", this.arkivskapers.init()); } if (this.arkivdels!= null) { products.put("arkivdels", this.arkivdels.init()); } if (this.arkivs!= null) { products.put("arkivs", this.arkivs.init()); } return products; } public SystemID.Selector> systemID() { return ((this.systemID == null)?this.systemID = new SystemID.Selector>(this._root, this, "systemID"):this.systemID); } public com.kscs.util.jaxb.Selector> tittel() { return ((this.tittel == null)?this.tittel = new com.kscs.util.jaxb.Selector>(this._root, this, "tittel"):this.tittel); } public com.kscs.util.jaxb.Selector> beskrivelse() { return ((this.beskrivelse == null)?this.beskrivelse = new com.kscs.util.jaxb.Selector>(this._root, this, "beskrivelse"):this.beskrivelse); } public Arkivstatus.Selector> arkivstatus() { return ((this.arkivstatus == null)?this.arkivstatus = new Arkivstatus.Selector>(this._root, this, "arkivstatus"):this.arkivstatus); } public Dokumentmedium.Selector> dokumentmedium() { return ((this.dokumentmedium == null)?this.dokumentmedium = new Dokumentmedium.Selector>(this._root, this, "dokumentmedium"):this.dokumentmedium); } public com.kscs.util.jaxb.Selector> oppbevaringssteds() { return ((this.oppbevaringssteds == null)?this.oppbevaringssteds = new com.kscs.util.jaxb.Selector>(this._root, this, "oppbevaringssteds"):this.oppbevaringssteds); } public com.kscs.util.jaxb.Selector> opprettetDato() { return ((this.opprettetDato == null)?this.opprettetDato = new com.kscs.util.jaxb.Selector>(this._root, this, "opprettetDato"):this.opprettetDato); } public com.kscs.util.jaxb.Selector> opprettetAv() { return ((this.opprettetAv == null)?this.opprettetAv = new com.kscs.util.jaxb.Selector>(this._root, this, "opprettetAv"):this.opprettetAv); } public com.kscs.util.jaxb.Selector> avsluttetDato() { return ((this.avsluttetDato == null)?this.avsluttetDato = new com.kscs.util.jaxb.Selector>(this._root, this, "avsluttetDato"):this.avsluttetDato); } public com.kscs.util.jaxb.Selector> avsluttetAv() { return ((this.avsluttetAv == null)?this.avsluttetAv = new com.kscs.util.jaxb.Selector>(this._root, this, "avsluttetAv"):this.avsluttetAv); } public Arkivskaper.Selector> arkivskapers() { return ((this.arkivskapers == null)?this.arkivskapers = new Arkivskaper.Selector>(this._root, this, "arkivskapers"):this.arkivskapers); } public Arkivdel.Selector> arkivdels() { return ((this.arkivdels == null)?this.arkivdels = new Arkivdel.Selector>(this._root, this, "arkivdels"):this.arkivdels); } public Arkiv.Selector> arkivs() { return ((this.arkivs == null)?this.arkivs = new Arkiv.Selector>(this._root, this, "arkivs"):this.arkivs); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy