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

no.ks.fiks.arkiv.v1.arkivstruktur.Skjerming 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.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.SkjermingOpphoererAksjon;
import no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Tilgangsrestriksjon;
import org.w3._2001.xmlschema.Adapter3;


/**
 * 

Java class for skjerming complex type. * *

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

 * <complexType name="skjerming">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="tilgangsrestriksjon" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}tilgangsrestriksjon"/>
 *         <element name="skjermingshjemmel" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}skjermingshjemmel"/>
 *         <element name="skjermingOpphoererDato" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}skjermingOpphoererDato" minOccurs="0"/>
 *         <element name="skjermingOpphoererAksjon" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}skjermingOpphoererAksjon" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "skjerming", propOrder = { "tilgangsrestriksjon", "skjermingshjemmel", "skjermingOpphoererDato", "skjermingOpphoererAksjon" }) public class Skjerming { @XmlElement(required = true) protected Tilgangsrestriksjon tilgangsrestriksjon; @XmlElement(required = true) protected String skjermingshjemmel; @XmlElement(type = String.class) @XmlJavaTypeAdapter(Adapter3 .class) @XmlSchemaType(name = "date") protected LocalDate skjermingOpphoererDato; protected SkjermingOpphoererAksjon skjermingOpphoererAksjon; /** * Gets the value of the tilgangsrestriksjon property. * * @return * possible object is * {@link Tilgangsrestriksjon } * */ public Tilgangsrestriksjon getTilgangsrestriksjon() { return tilgangsrestriksjon; } /** * Sets the value of the tilgangsrestriksjon property. * * @param value * allowed object is * {@link Tilgangsrestriksjon } * */ public void setTilgangsrestriksjon(Tilgangsrestriksjon value) { this.tilgangsrestriksjon = value; } /** * Gets the value of the skjermingshjemmel property. * * @return * possible object is * {@link String } * */ public String getSkjermingshjemmel() { return skjermingshjemmel; } /** * Sets the value of the skjermingshjemmel property. * * @param value * allowed object is * {@link String } * */ public void setSkjermingshjemmel(String value) { this.skjermingshjemmel = value; } /** * Gets the value of the skjermingOpphoererDato property. * * @return * possible object is * {@link String } * */ public LocalDate getSkjermingOpphoererDato() { return skjermingOpphoererDato; } /** * Sets the value of the skjermingOpphoererDato property. * * @param value * allowed object is * {@link String } * */ public void setSkjermingOpphoererDato(LocalDate value) { this.skjermingOpphoererDato = value; } /** * Gets the value of the skjermingOpphoererAksjon property. * * @return * possible object is * {@link SkjermingOpphoererAksjon } * */ public SkjermingOpphoererAksjon getSkjermingOpphoererAksjon() { return skjermingOpphoererAksjon; } /** * Sets the value of the skjermingOpphoererAksjon property. * * @param value * allowed object is * {@link SkjermingOpphoererAksjon } * */ public void setSkjermingOpphoererAksjon(SkjermingOpphoererAksjon value) { this.skjermingOpphoererAksjon = 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 Skjerming.Builder<_B> _other) { _other.tilgangsrestriksjon = ((this.tilgangsrestriksjon == null)?null:this.tilgangsrestriksjon.newCopyBuilder(_other)); _other.skjermingshjemmel = this.skjermingshjemmel; _other.skjermingOpphoererDato = this.skjermingOpphoererDato; _other.skjermingOpphoererAksjon = ((this.skjermingOpphoererAksjon == null)?null:this.skjermingOpphoererAksjon.newCopyBuilder(_other)); } public<_B >Skjerming.Builder<_B> newCopyBuilder(final _B _parentBuilder) { return new Skjerming.Builder<_B>(_parentBuilder, this, true); } public Skjerming.Builder newCopyBuilder() { return newCopyBuilder(null); } public static Skjerming.Builder builder() { return new Skjerming.Builder(null, null, false); } public static<_B >Skjerming.Builder<_B> copyOf(final Skjerming _other) { final Skjerming.Builder<_B> _newBuilder = new Skjerming.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 Skjerming.Builder<_B> _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final PropertyTree tilgangsrestriksjonPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("tilgangsrestriksjon")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(tilgangsrestriksjonPropertyTree!= null):((tilgangsrestriksjonPropertyTree == null)||(!tilgangsrestriksjonPropertyTree.isLeaf())))) { _other.tilgangsrestriksjon = ((this.tilgangsrestriksjon == null)?null:this.tilgangsrestriksjon.newCopyBuilder(_other, tilgangsrestriksjonPropertyTree, _propertyTreeUse)); } final PropertyTree skjermingshjemmelPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("skjermingshjemmel")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(skjermingshjemmelPropertyTree!= null):((skjermingshjemmelPropertyTree == null)||(!skjermingshjemmelPropertyTree.isLeaf())))) { _other.skjermingshjemmel = this.skjermingshjemmel; } final PropertyTree skjermingOpphoererDatoPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("skjermingOpphoererDato")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(skjermingOpphoererDatoPropertyTree!= null):((skjermingOpphoererDatoPropertyTree == null)||(!skjermingOpphoererDatoPropertyTree.isLeaf())))) { _other.skjermingOpphoererDato = this.skjermingOpphoererDato; } final PropertyTree skjermingOpphoererAksjonPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("skjermingOpphoererAksjon")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(skjermingOpphoererAksjonPropertyTree!= null):((skjermingOpphoererAksjonPropertyTree == null)||(!skjermingOpphoererAksjonPropertyTree.isLeaf())))) { _other.skjermingOpphoererAksjon = ((this.skjermingOpphoererAksjon == null)?null:this.skjermingOpphoererAksjon.newCopyBuilder(_other, skjermingOpphoererAksjonPropertyTree, _propertyTreeUse)); } } public<_B >Skjerming.Builder<_B> newCopyBuilder(final _B _parentBuilder, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return new Skjerming.Builder<_B>(_parentBuilder, this, true, _propertyTree, _propertyTreeUse); } public Skjerming.Builder newCopyBuilder(final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return newCopyBuilder(null, _propertyTree, _propertyTreeUse); } public static<_B >Skjerming.Builder<_B> copyOf(final Skjerming _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final Skjerming.Builder<_B> _newBuilder = new Skjerming.Builder<_B>(null, null, false); _other.copyTo(_newBuilder, _propertyTree, _propertyTreeUse); return _newBuilder; } public static Skjerming.Builder copyExcept(final Skjerming _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.EXCLUDE); } public static Skjerming.Builder copyOnly(final Skjerming _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.INCLUDE); } public static class Builder<_B >implements Buildable { protected final _B _parentBuilder; protected final Skjerming _storedValue; private Tilgangsrestriksjon.Builder> tilgangsrestriksjon; private String skjermingshjemmel; private LocalDate skjermingOpphoererDato; private SkjermingOpphoererAksjon.Builder> skjermingOpphoererAksjon; public Builder(final _B _parentBuilder, final Skjerming _other, final boolean _copy) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; this.tilgangsrestriksjon = ((_other.tilgangsrestriksjon == null)?null:_other.tilgangsrestriksjon.newCopyBuilder(this)); this.skjermingshjemmel = _other.skjermingshjemmel; this.skjermingOpphoererDato = _other.skjermingOpphoererDato; this.skjermingOpphoererAksjon = ((_other.skjermingOpphoererAksjon == null)?null:_other.skjermingOpphoererAksjon.newCopyBuilder(this)); } else { _storedValue = _other; } } else { _storedValue = null; } } public Builder(final _B _parentBuilder, final Skjerming _other, final boolean _copy, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; final PropertyTree tilgangsrestriksjonPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("tilgangsrestriksjon")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(tilgangsrestriksjonPropertyTree!= null):((tilgangsrestriksjonPropertyTree == null)||(!tilgangsrestriksjonPropertyTree.isLeaf())))) { this.tilgangsrestriksjon = ((_other.tilgangsrestriksjon == null)?null:_other.tilgangsrestriksjon.newCopyBuilder(this, tilgangsrestriksjonPropertyTree, _propertyTreeUse)); } final PropertyTree skjermingshjemmelPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("skjermingshjemmel")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(skjermingshjemmelPropertyTree!= null):((skjermingshjemmelPropertyTree == null)||(!skjermingshjemmelPropertyTree.isLeaf())))) { this.skjermingshjemmel = _other.skjermingshjemmel; } final PropertyTree skjermingOpphoererDatoPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("skjermingOpphoererDato")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(skjermingOpphoererDatoPropertyTree!= null):((skjermingOpphoererDatoPropertyTree == null)||(!skjermingOpphoererDatoPropertyTree.isLeaf())))) { this.skjermingOpphoererDato = _other.skjermingOpphoererDato; } final PropertyTree skjermingOpphoererAksjonPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("skjermingOpphoererAksjon")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(skjermingOpphoererAksjonPropertyTree!= null):((skjermingOpphoererAksjonPropertyTree == null)||(!skjermingOpphoererAksjonPropertyTree.isLeaf())))) { this.skjermingOpphoererAksjon = ((_other.skjermingOpphoererAksjon == null)?null:_other.skjermingOpphoererAksjon.newCopyBuilder(this, skjermingOpphoererAksjonPropertyTree, _propertyTreeUse)); } } else { _storedValue = _other; } } else { _storedValue = null; } } public _B end() { return this._parentBuilder; } protected<_P extends Skjerming >_P init(final _P _product) { _product.tilgangsrestriksjon = ((this.tilgangsrestriksjon == null)?null:this.tilgangsrestriksjon.build()); _product.skjermingshjemmel = this.skjermingshjemmel; _product.skjermingOpphoererDato = this.skjermingOpphoererDato; _product.skjermingOpphoererAksjon = ((this.skjermingOpphoererAksjon == null)?null:this.skjermingOpphoererAksjon.build()); return _product; } /** * Sets the new value of "tilgangsrestriksjon" (any previous value will be * replaced) * * @param tilgangsrestriksjon * New value of the "tilgangsrestriksjon" property. */ public Skjerming.Builder<_B> withTilgangsrestriksjon(final Tilgangsrestriksjon tilgangsrestriksjon) { this.tilgangsrestriksjon = ((tilgangsrestriksjon == null)?null:new Tilgangsrestriksjon.Builder>(this, tilgangsrestriksjon, false)); return this; } /** * Returns the existing builder or a new builder to build the value of the * "tilgangsrestriksjon" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Tilgangsrestriksjon.Builder#end()} * to return to the current builder. * * @return * A new builder to build the value of the "tilgangsrestriksjon" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.Tilgangsrestriksjon.Builder#end()} * to return to the current builder. */ public Tilgangsrestriksjon.Builder> withTilgangsrestriksjon() { if (this.tilgangsrestriksjon!= null) { return this.tilgangsrestriksjon; } return this.tilgangsrestriksjon = new Tilgangsrestriksjon.Builder>(this, null, false); } /** * Sets the new value of "skjermingshjemmel" (any previous value will be replaced) * * @param skjermingshjemmel * New value of the "skjermingshjemmel" property. */ public Skjerming.Builder<_B> withSkjermingshjemmel(final String skjermingshjemmel) { this.skjermingshjemmel = skjermingshjemmel; return this; } /** * Sets the new value of "skjermingOpphoererDato" (any previous value will be * replaced) * * @param skjermingOpphoererDato * New value of the "skjermingOpphoererDato" property. */ public Skjerming.Builder<_B> withSkjermingOpphoererDato(final LocalDate skjermingOpphoererDato) { this.skjermingOpphoererDato = skjermingOpphoererDato; return this; } /** * Sets the new value of "skjermingOpphoererAksjon" (any previous value will be * replaced) * * @param skjermingOpphoererAksjon * New value of the "skjermingOpphoererAksjon" property. */ public Skjerming.Builder<_B> withSkjermingOpphoererAksjon(final SkjermingOpphoererAksjon skjermingOpphoererAksjon) { this.skjermingOpphoererAksjon = ((skjermingOpphoererAksjon == null)?null:new SkjermingOpphoererAksjon.Builder>(this, skjermingOpphoererAksjon, false)); return this; } /** * Returns the existing builder or a new builder to build the value of the * "skjermingOpphoererAksjon" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.SkjermingOpphoererAksjon.Builder#end()} * to return to the current builder. * * @return * A new builder to build the value of the "skjermingOpphoererAksjon" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.metadatakatalog.SkjermingOpphoererAksjon.Builder#end()} * to return to the current builder. */ public SkjermingOpphoererAksjon.Builder> withSkjermingOpphoererAksjon() { if (this.skjermingOpphoererAksjon!= null) { return this.skjermingOpphoererAksjon; } return this.skjermingOpphoererAksjon = new SkjermingOpphoererAksjon.Builder>(this, null, false); } @Override public Skjerming build() { if (_storedValue == null) { return this.init(new Skjerming()); } else { return ((Skjerming) _storedValue); } } public Skjerming.Builder<_B> copyOf(final Skjerming _other) { _other.copyTo(this); return this; } public Skjerming.Builder<_B> copyOf(final Skjerming.Builder _other) { return copyOf(_other.build()); } } public static class Select extends Skjerming.Selector { Select() { super(null, null, null); } public static Skjerming.Select _root() { return new Skjerming.Select(); } } public static class Selector , TParent > extends com.kscs.util.jaxb.Selector { private Tilgangsrestriksjon.Selector> tilgangsrestriksjon = null; private com.kscs.util.jaxb.Selector> skjermingshjemmel = null; private com.kscs.util.jaxb.Selector> skjermingOpphoererDato = null; private SkjermingOpphoererAksjon.Selector> skjermingOpphoererAksjon = 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.tilgangsrestriksjon!= null) { products.put("tilgangsrestriksjon", this.tilgangsrestriksjon.init()); } if (this.skjermingshjemmel!= null) { products.put("skjermingshjemmel", this.skjermingshjemmel.init()); } if (this.skjermingOpphoererDato!= null) { products.put("skjermingOpphoererDato", this.skjermingOpphoererDato.init()); } if (this.skjermingOpphoererAksjon!= null) { products.put("skjermingOpphoererAksjon", this.skjermingOpphoererAksjon.init()); } return products; } public Tilgangsrestriksjon.Selector> tilgangsrestriksjon() { return ((this.tilgangsrestriksjon == null)?this.tilgangsrestriksjon = new Tilgangsrestriksjon.Selector>(this._root, this, "tilgangsrestriksjon"):this.tilgangsrestriksjon); } public com.kscs.util.jaxb.Selector> skjermingshjemmel() { return ((this.skjermingshjemmel == null)?this.skjermingshjemmel = new com.kscs.util.jaxb.Selector>(this._root, this, "skjermingshjemmel"):this.skjermingshjemmel); } public com.kscs.util.jaxb.Selector> skjermingOpphoererDato() { return ((this.skjermingOpphoererDato == null)?this.skjermingOpphoererDato = new com.kscs.util.jaxb.Selector>(this._root, this, "skjermingOpphoererDato"):this.skjermingOpphoererDato); } public SkjermingOpphoererAksjon.Selector> skjermingOpphoererAksjon() { return ((this.skjermingOpphoererAksjon == null)?this.skjermingOpphoererAksjon = new SkjermingOpphoererAksjon.Selector>(this._root, this, "skjermingOpphoererAksjon"):this.skjermingOpphoererAksjon); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy