no.ks.fiks.arkiv.v1.arkivstruktur.Arkivskaper 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.arkivstruktur;
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 arkivskaper complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="arkivskaper">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="arkivskaperID" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}arkivskaperID"/>
* <element name="arkivskaperNavn" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}arkivskaperNavn"/>
* <element name="beskrivelse" type="{https://ks-no.github.io/standarder/fiks-protokoll/fiks-arkiv/metadatakatalog/v1}beskrivelse" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "arkivskaper", propOrder = {
"arkivskaperID",
"arkivskaperNavn",
"beskrivelse"
})
public class Arkivskaper {
@XmlElement(required = true)
protected String arkivskaperID;
@XmlElement(required = true)
protected String arkivskaperNavn;
protected String beskrivelse;
/**
* Gets the value of the arkivskaperID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArkivskaperID() {
return arkivskaperID;
}
/**
* Sets the value of the arkivskaperID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArkivskaperID(String value) {
this.arkivskaperID = value;
}
/**
* Gets the value of the arkivskaperNavn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArkivskaperNavn() {
return arkivskaperNavn;
}
/**
* Sets the value of the arkivskaperNavn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArkivskaperNavn(String value) {
this.arkivskaperNavn = 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;
}
/**
* 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 Arkivskaper.Builder<_B> _other) {
_other.arkivskaperID = this.arkivskaperID;
_other.arkivskaperNavn = this.arkivskaperNavn;
_other.beskrivelse = this.beskrivelse;
}
public<_B >Arkivskaper.Builder<_B> newCopyBuilder(final _B _parentBuilder) {
return new Arkivskaper.Builder<_B>(_parentBuilder, this, true);
}
public Arkivskaper.Builder newCopyBuilder() {
return newCopyBuilder(null);
}
public static Arkivskaper.Builder builder() {
return new Arkivskaper.Builder(null, null, false);
}
public static<_B >Arkivskaper.Builder<_B> copyOf(final Arkivskaper _other) {
final Arkivskaper.Builder<_B> _newBuilder = new Arkivskaper.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 Arkivskaper.Builder<_B> _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) {
final PropertyTree arkivskaperIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivskaperID"));
if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivskaperIDPropertyTree!= null):((arkivskaperIDPropertyTree == null)||(!arkivskaperIDPropertyTree.isLeaf())))) {
_other.arkivskaperID = this.arkivskaperID;
}
final PropertyTree arkivskaperNavnPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivskaperNavn"));
if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivskaperNavnPropertyTree!= null):((arkivskaperNavnPropertyTree == null)||(!arkivskaperNavnPropertyTree.isLeaf())))) {
_other.arkivskaperNavn = this.arkivskaperNavn;
}
final PropertyTree beskrivelsePropertyTree = ((_propertyTree == null)?null:_propertyTree.get("beskrivelse"));
if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(beskrivelsePropertyTree!= null):((beskrivelsePropertyTree == null)||(!beskrivelsePropertyTree.isLeaf())))) {
_other.beskrivelse = this.beskrivelse;
}
}
public<_B >Arkivskaper.Builder<_B> newCopyBuilder(final _B _parentBuilder, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) {
return new Arkivskaper.Builder<_B>(_parentBuilder, this, true, _propertyTree, _propertyTreeUse);
}
public Arkivskaper.Builder newCopyBuilder(final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) {
return newCopyBuilder(null, _propertyTree, _propertyTreeUse);
}
public static<_B >Arkivskaper.Builder<_B> copyOf(final Arkivskaper _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) {
final Arkivskaper.Builder<_B> _newBuilder = new Arkivskaper.Builder<_B>(null, null, false);
_other.copyTo(_newBuilder, _propertyTree, _propertyTreeUse);
return _newBuilder;
}
public static Arkivskaper.Builder copyExcept(final Arkivskaper _other, final PropertyTree _propertyTree) {
return copyOf(_other, _propertyTree, PropertyTreeUse.EXCLUDE);
}
public static Arkivskaper.Builder copyOnly(final Arkivskaper _other, final PropertyTree _propertyTree) {
return copyOf(_other, _propertyTree, PropertyTreeUse.INCLUDE);
}
public static class Builder<_B >implements Buildable
{
protected final _B _parentBuilder;
protected final Arkivskaper _storedValue;
private String arkivskaperID;
private String arkivskaperNavn;
private String beskrivelse;
public Builder(final _B _parentBuilder, final Arkivskaper _other, final boolean _copy) {
this._parentBuilder = _parentBuilder;
if (_other!= null) {
if (_copy) {
_storedValue = null;
this.arkivskaperID = _other.arkivskaperID;
this.arkivskaperNavn = _other.arkivskaperNavn;
this.beskrivelse = _other.beskrivelse;
} else {
_storedValue = _other;
}
} else {
_storedValue = null;
}
}
public Builder(final _B _parentBuilder, final Arkivskaper _other, final boolean _copy, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) {
this._parentBuilder = _parentBuilder;
if (_other!= null) {
if (_copy) {
_storedValue = null;
final PropertyTree arkivskaperIDPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivskaperID"));
if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivskaperIDPropertyTree!= null):((arkivskaperIDPropertyTree == null)||(!arkivskaperIDPropertyTree.isLeaf())))) {
this.arkivskaperID = _other.arkivskaperID;
}
final PropertyTree arkivskaperNavnPropertyTree = ((_propertyTree == null)?null:_propertyTree.get("arkivskaperNavn"));
if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(arkivskaperNavnPropertyTree!= null):((arkivskaperNavnPropertyTree == null)||(!arkivskaperNavnPropertyTree.isLeaf())))) {
this.arkivskaperNavn = _other.arkivskaperNavn;
}
final PropertyTree beskrivelsePropertyTree = ((_propertyTree == null)?null:_propertyTree.get("beskrivelse"));
if (((_propertyTreeUse == PropertyTreeUse.INCLUDE)?(beskrivelsePropertyTree!= null):((beskrivelsePropertyTree == null)||(!beskrivelsePropertyTree.isLeaf())))) {
this.beskrivelse = _other.beskrivelse;
}
} else {
_storedValue = _other;
}
} else {
_storedValue = null;
}
}
public _B end() {
return this._parentBuilder;
}
protected<_P extends Arkivskaper >_P init(final _P _product) {
_product.arkivskaperID = this.arkivskaperID;
_product.arkivskaperNavn = this.arkivskaperNavn;
_product.beskrivelse = this.beskrivelse;
return _product;
}
/**
* Sets the new value of "arkivskaperID" (any previous value will be replaced)
*
* @param arkivskaperID
* New value of the "arkivskaperID" property.
*/
public Arkivskaper.Builder<_B> withArkivskaperID(final String arkivskaperID) {
this.arkivskaperID = arkivskaperID;
return this;
}
/**
* Sets the new value of "arkivskaperNavn" (any previous value will be replaced)
*
* @param arkivskaperNavn
* New value of the "arkivskaperNavn" property.
*/
public Arkivskaper.Builder<_B> withArkivskaperNavn(final String arkivskaperNavn) {
this.arkivskaperNavn = arkivskaperNavn;
return this;
}
/**
* Sets the new value of "beskrivelse" (any previous value will be replaced)
*
* @param beskrivelse
* New value of the "beskrivelse" property.
*/
public Arkivskaper.Builder<_B> withBeskrivelse(final String beskrivelse) {
this.beskrivelse = beskrivelse;
return this;
}
@Override
public Arkivskaper build() {
if (_storedValue == null) {
return this.init(new Arkivskaper());
} else {
return ((Arkivskaper) _storedValue);
}
}
public Arkivskaper.Builder<_B> copyOf(final Arkivskaper _other) {
_other.copyTo(this);
return this;
}
public Arkivskaper.Builder<_B> copyOf(final Arkivskaper.Builder _other) {
return copyOf(_other.build());
}
}
public static class Select
extends Arkivskaper.Selector
{
Select() {
super(null, null, null);
}
public static Arkivskaper.Select _root() {
return new Arkivskaper.Select();
}
}
public static class Selector , TParent >
extends com.kscs.util.jaxb.Selector
{
private com.kscs.util.jaxb.Selector> arkivskaperID = null;
private com.kscs.util.jaxb.Selector> arkivskaperNavn = null;
private com.kscs.util.jaxb.Selector> beskrivelse = 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.arkivskaperID!= null) {
products.put("arkivskaperID", this.arkivskaperID.init());
}
if (this.arkivskaperNavn!= null) {
products.put("arkivskaperNavn", this.arkivskaperNavn.init());
}
if (this.beskrivelse!= null) {
products.put("beskrivelse", this.beskrivelse.init());
}
return products;
}
public com.kscs.util.jaxb.Selector> arkivskaperID() {
return ((this.arkivskaperID == null)?this.arkivskaperID = new com.kscs.util.jaxb.Selector>(this._root, this, "arkivskaperID"):this.arkivskaperID);
}
public com.kscs.util.jaxb.Selector> arkivskaperNavn() {
return ((this.arkivskaperNavn == null)?this.arkivskaperNavn = new com.kscs.util.jaxb.Selector>(this._root, this, "arkivskaperNavn"):this.arkivskaperNavn);
}
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);
}
}
}