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

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

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.XmlType;
import com.kscs.util.jaxb.Buildable;
import com.kscs.util.jaxb.PropertyTree;
import com.kscs.util.jaxb.PropertyTreeUse;


/**
 * 

Java class for klassifikasjon complex type. * *

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

 * <complexType name="klassifikasjon">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="klassifikasjonID" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}klassifikasjonID" minOccurs="0"/>
 *         <element name="klassifikasjonssystem" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/arkivstruktur/minimum/v1}klassifikasjonssystemMinimum"/>
 *         <element name="klasseID" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}klasseID"/>
 *         <element name="tittel" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}tittel" minOccurs="0"/>
 *         <element name="erSkjermet" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}erSkjermet" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "klassifikasjon", propOrder = { "klassifikasjonID", "klassifikasjonssystem", "klasseID", "tittel", "erSkjermet" }) public class Klassifikasjon { protected String klassifikasjonID; @XmlElement(required = true) protected KlassifikasjonssystemMinimum klassifikasjonssystem; @XmlElement(required = true) protected String klasseID; protected String tittel; protected Boolean erSkjermet; /** * Gets the value of the klassifikasjonID property. * * @return * possible object is * {@link String } * */ public String getKlassifikasjonID() { return klassifikasjonID; } /** * Sets the value of the klassifikasjonID property. * * @param value * allowed object is * {@link String } * */ public void setKlassifikasjonID(String value) { this.klassifikasjonID = value; } /** * Gets the value of the klassifikasjonssystem property. * * @return * possible object is * {@link KlassifikasjonssystemMinimum } * */ public KlassifikasjonssystemMinimum getKlassifikasjonssystem() { return klassifikasjonssystem; } /** * Sets the value of the klassifikasjonssystem property. * * @param value * allowed object is * {@link KlassifikasjonssystemMinimum } * */ public void setKlassifikasjonssystem(KlassifikasjonssystemMinimum value) { this.klassifikasjonssystem = value; } /** * Gets the value of the klasseID property. * * @return * possible object is * {@link String } * */ public String getKlasseID() { return klasseID; } /** * Sets the value of the klasseID property. * * @param value * allowed object is * {@link String } * */ public void setKlasseID(String value) { this.klasseID = 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 erSkjermet property. * * @return * possible object is * {@link Boolean } * */ public Boolean isErSkjermet() { return erSkjermet; } /** * Sets the value of the erSkjermet property. * * @param value * allowed object is * {@link Boolean } * */ public void setErSkjermet(Boolean value) { this.erSkjermet = 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 Klassifikasjon.Builder<_B> _other) { _other.klassifikasjonID = this.klassifikasjonID; _other.klassifikasjonssystem = ((this.klassifikasjonssystem == null)?null:this.klassifikasjonssystem.newCopyBuilder(_other)); _other.klasseID = this.klasseID; _other.tittel = this.tittel; _other.erSkjermet = this.erSkjermet; } public<_B >Klassifikasjon.Builder<_B> newCopyBuilder(final _B _parentBuilder) { return new Klassifikasjon.Builder<_B>(_parentBuilder, this, true); } public Klassifikasjon.Builder newCopyBuilder() { return newCopyBuilder(null); } public static Klassifikasjon.Builder builder() { return new Klassifikasjon.Builder(null, null, false); } public static<_B >Klassifikasjon.Builder<_B> copyOf(final Klassifikasjon _other) { final Klassifikasjon.Builder<_B> _newBuilder = new Klassifikasjon.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 Klassifikasjon.Builder<_B> _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final PropertyTree klassifikasjonIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonID")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonIDPropertyTree!= null):((klassifikasjonIDPropertyTree == null)||(!klassifikasjonIDPropertyTree.isLeaf())))) { _other.klassifikasjonID = this.klassifikasjonID; } final PropertyTree klassifikasjonssystemPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonssystem")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonssystemPropertyTree!= null):((klassifikasjonssystemPropertyTree == null)||(!klassifikasjonssystemPropertyTree.isLeaf())))) { _other.klassifikasjonssystem = ((this.klassifikasjonssystem == null)?null:this.klassifikasjonssystem.newCopyBuilder(_other, klassifikasjonssystemPropertyTree, _propertyTreeUse)); } final PropertyTree klasseIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klasseID")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klasseIDPropertyTree!= null):((klasseIDPropertyTree == null)||(!klasseIDPropertyTree.isLeaf())))) { _other.klasseID = this.klasseID; } 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 erSkjermetPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("erSkjermet")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(erSkjermetPropertyTree!= null):((erSkjermetPropertyTree == null)||(!erSkjermetPropertyTree.isLeaf())))) { _other.erSkjermet = this.erSkjermet; } } public<_B >Klassifikasjon.Builder<_B> newCopyBuilder(final _B _parentBuilder, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return new Klassifikasjon.Builder<_B>(_parentBuilder, this, true, _propertyTree, _propertyTreeUse); } public Klassifikasjon.Builder newCopyBuilder(final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return newCopyBuilder(null, _propertyTree, _propertyTreeUse); } public static<_B >Klassifikasjon.Builder<_B> copyOf(final Klassifikasjon _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final Klassifikasjon.Builder<_B> _newBuilder = new Klassifikasjon.Builder<_B>(null, null, false); _other.copyTo(_newBuilder, _propertyTree, _propertyTreeUse); return _newBuilder; } public static Klassifikasjon.Builder copyExcept(final Klassifikasjon _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.EXCLUDE); } public static Klassifikasjon.Builder copyOnly(final Klassifikasjon _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.INCLUDE); } public static class Builder<_B >implements Buildable { protected final _B _parentBuilder; protected final Klassifikasjon _storedValue; private String klassifikasjonID; private KlassifikasjonssystemMinimum.Builder> klassifikasjonssystem; private String klasseID; private String tittel; private Boolean erSkjermet; public Builder(final _B _parentBuilder, final Klassifikasjon _other, final boolean _copy) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; this.klassifikasjonID = _other.klassifikasjonID; this.klassifikasjonssystem = ((_other.klassifikasjonssystem == null)?null:_other.klassifikasjonssystem.newCopyBuilder(this)); this.klasseID = _other.klasseID; this.tittel = _other.tittel; this.erSkjermet = _other.erSkjermet; } else { _storedValue = _other; } } else { _storedValue = null; } } public Builder(final _B _parentBuilder, final Klassifikasjon _other, final boolean _copy, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; final PropertyTree klassifikasjonIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonID")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonIDPropertyTree!= null):((klassifikasjonIDPropertyTree == null)||(!klassifikasjonIDPropertyTree.isLeaf())))) { this.klassifikasjonID = _other.klassifikasjonID; } final PropertyTree klassifikasjonssystemPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonssystem")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonssystemPropertyTree!= null):((klassifikasjonssystemPropertyTree == null)||(!klassifikasjonssystemPropertyTree.isLeaf())))) { this.klassifikasjonssystem = ((_other.klassifikasjonssystem == null)?null:_other.klassifikasjonssystem.newCopyBuilder(this, klassifikasjonssystemPropertyTree, _propertyTreeUse)); } final PropertyTree klasseIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klasseID")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klasseIDPropertyTree!= null):((klasseIDPropertyTree == null)||(!klasseIDPropertyTree.isLeaf())))) { this.klasseID = _other.klasseID; } 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 erSkjermetPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("erSkjermet")); if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(erSkjermetPropertyTree!= null):((erSkjermetPropertyTree == null)||(!erSkjermetPropertyTree.isLeaf())))) { this.erSkjermet = _other.erSkjermet; } } else { _storedValue = _other; } } else { _storedValue = null; } } public _B end() { return this._parentBuilder; } protected<_P extends Klassifikasjon >_P init(final _P _product) { _product.klassifikasjonID = this.klassifikasjonID; _product.klassifikasjonssystem = ((this.klassifikasjonssystem == null)?null:this.klassifikasjonssystem.build()); _product.klasseID = this.klasseID; _product.tittel = this.tittel; _product.erSkjermet = this.erSkjermet; return _product; } /** * Sets the new value of "klassifikasjonID" (any previous value will be replaced) * * @param klassifikasjonID * New value of the "klassifikasjonID" property. */ public Klassifikasjon.Builder<_B> withKlassifikasjonID(final String klassifikasjonID) { this.klassifikasjonID = klassifikasjonID; return this; } /** * Sets the new value of "klassifikasjonssystem" (any previous value will be * replaced) * * @param klassifikasjonssystem * New value of the "klassifikasjonssystem" property. */ public Klassifikasjon.Builder<_B> withKlassifikasjonssystem(final KlassifikasjonssystemMinimum klassifikasjonssystem) { this.klassifikasjonssystem = ((klassifikasjonssystem == null)?null:new KlassifikasjonssystemMinimum.Builder>(this, klassifikasjonssystem, false)); return this; } /** * Returns the existing builder or a new builder to build the value of the * "klassifikasjonssystem" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.minimum.KlassifikasjonssystemMinimum.Builder#end()} * to return to the current builder. * * @return * A new builder to build the value of the "klassifikasjonssystem" property. * Use {@link * no.ks.fiks.arkiv.v1.arkivstruktur.minimum.KlassifikasjonssystemMinimum.Builder#end()} * to return to the current builder. */ public KlassifikasjonssystemMinimum.Builder> withKlassifikasjonssystem() { if (this.klassifikasjonssystem!= null) { return this.klassifikasjonssystem; } return this.klassifikasjonssystem = new KlassifikasjonssystemMinimum.Builder>(this, null, false); } /** * Sets the new value of "klasseID" (any previous value will be replaced) * * @param klasseID * New value of the "klasseID" property. */ public Klassifikasjon.Builder<_B> withKlasseID(final String klasseID) { this.klasseID = klasseID; return this; } /** * Sets the new value of "tittel" (any previous value will be replaced) * * @param tittel * New value of the "tittel" property. */ public Klassifikasjon.Builder<_B> withTittel(final String tittel) { this.tittel = tittel; return this; } /** * Sets the new value of "erSkjermet" (any previous value will be replaced) * * @param erSkjermet * New value of the "erSkjermet" property. */ public Klassifikasjon.Builder<_B> withErSkjermet(final Boolean erSkjermet) { this.erSkjermet = erSkjermet; return this; } @Override public Klassifikasjon build() { if (_storedValue == null) { return this.init(new Klassifikasjon()); } else { return ((Klassifikasjon) _storedValue); } } public Klassifikasjon.Builder<_B> copyOf(final Klassifikasjon _other) { _other.copyTo(this); return this; } public Klassifikasjon.Builder<_B> copyOf(final Klassifikasjon.Builder _other) { return copyOf(_other.build()); } } public static class Select extends Klassifikasjon.Selector { Select() { super(null, null, null); } public static Klassifikasjon.Select _root() { return new Klassifikasjon.Select(); } } public static class Selector , TParent > extends com.kscs.util.jaxb.Selector { private com.kscs.util.jaxb.Selector> klassifikasjonID = null; private KlassifikasjonssystemMinimum.Selector> klassifikasjonssystem = null; private com.kscs.util.jaxb.Selector> klasseID = null; private com.kscs.util.jaxb.Selector> tittel = null; private com.kscs.util.jaxb.Selector> erSkjermet = 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.klassifikasjonID!= null) { products.put("klassifikasjonID", this.klassifikasjonID.init()); } if (this.klassifikasjonssystem!= null) { products.put("klassifikasjonssystem", this.klassifikasjonssystem.init()); } if (this.klasseID!= null) { products.put("klasseID", this.klasseID.init()); } if (this.tittel!= null) { products.put("tittel", this.tittel.init()); } if (this.erSkjermet!= null) { products.put("erSkjermet", this.erSkjermet.init()); } return products; } public com.kscs.util.jaxb.Selector> klassifikasjonID() { return ((this.klassifikasjonID == null)?this.klassifikasjonID = new com.kscs.util.jaxb.Selector>(this._root, this, "klassifikasjonID"):this.klassifikasjonID); } public KlassifikasjonssystemMinimum.Selector> klassifikasjonssystem() { return ((this.klassifikasjonssystem == null)?this.klassifikasjonssystem = new KlassifikasjonssystemMinimum.Selector>(this._root, this, "klassifikasjonssystem"):this.klassifikasjonssystem); } public com.kscs.util.jaxb.Selector> klasseID() { return ((this.klasseID == null)?this.klasseID = new com.kscs.util.jaxb.Selector>(this._root, this, "klasseID"):this.klasseID); } 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> erSkjermet() { return ((this.erSkjermet == null)?this.erSkjermet = new com.kscs.util.jaxb.Selector>(this._root, this, "erSkjermet"):this.erSkjermet); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy