no.ks.fiks.arkiv.v1.arkivmelding.opprett.Klassifikasjon Maven / Gradle / Ivy
//
// 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.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="klassifikasjonssystemID" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}klassifikasjonssystemID"/>
* <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 = {
"klassifikasjonssystemID",
"klasseID",
"tittel",
"erSkjermet"
})
public class Klassifikasjon {
@XmlElement(required = true)
protected String klassifikasjonssystemID;
@XmlElement(required = true)
protected String klasseID;
protected String tittel;
protected Boolean erSkjermet;
/**
* Gets the value of the klassifikasjonssystemID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKlassifikasjonssystemID() {
return klassifikasjonssystemID;
}
/**
* Sets the value of the klassifikasjonssystemID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKlassifikasjonssystemID(String value) {
this.klassifikasjonssystemID = 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.klassifikasjonssystemID = this.klassifikasjonssystemID;
_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 klassifikasjonssystemIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonssystemID"));
if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonssystemIDPropertyTree!= null):((klassifikasjonssystemIDPropertyTree == null)||(!klassifikasjonssystemIDPropertyTree.isLeaf())))) {
_other.klassifikasjonssystemID = this.klassifikasjonssystemID;
}
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 klassifikasjonssystemID;
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.klassifikasjonssystemID = _other.klassifikasjonssystemID;
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 klassifikasjonssystemIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("klassifikasjonssystemID"));
if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(klassifikasjonssystemIDPropertyTree!= null):((klassifikasjonssystemIDPropertyTree == null)||(!klassifikasjonssystemIDPropertyTree.isLeaf())))) {
this.klassifikasjonssystemID = _other.klassifikasjonssystemID;
}
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.klassifikasjonssystemID = this.klassifikasjonssystemID;
_product.klasseID = this.klasseID;
_product.tittel = this.tittel;
_product.erSkjermet = this.erSkjermet;
return _product;
}
/**
* Sets the new value of "klassifikasjonssystemID" (any previous value will be
* replaced)
*
* @param klassifikasjonssystemID
* New value of the "klassifikasjonssystemID" property.
*/
public Klassifikasjon.Builder<_B> withKlassifikasjonssystemID(final String klassifikasjonssystemID) {
this.klassifikasjonssystemID = klassifikasjonssystemID;
return this;
}
/**
* 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> klassifikasjonssystemID = 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.klassifikasjonssystemID!= null) {
products.put("klassifikasjonssystemID", this.klassifikasjonssystemID.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> klassifikasjonssystemID() {
return ((this.klassifikasjonssystemID == null)?this.klassifikasjonssystemID = new com.kscs.util.jaxb.Selector>(this._root, this, "klassifikasjonssystemID"):this.klassifikasjonssystemID);
}
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);
}
}
}