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

no.ks.fiks.arkiv.v1.arkivmelding.oppdater.KlassifikasjonSlett 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.arkivmelding.oppdater;

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 klassifikasjonSlett complex type. * *

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

 * <complexType name="klassifikasjonSlett">
 *   <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"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "klassifikasjonSlett", propOrder = { "klassifikasjonssystemID" }) public class KlassifikasjonSlett { @XmlElement(required = true) protected String klassifikasjonssystemID; /** * 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; } /** * 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 KlassifikasjonSlett.Builder<_B> _other) { _other.klassifikasjonssystemID = this.klassifikasjonssystemID; } public<_B >KlassifikasjonSlett.Builder<_B> newCopyBuilder(final _B _parentBuilder) { return new KlassifikasjonSlett.Builder<_B>(_parentBuilder, this, true); } public KlassifikasjonSlett.Builder newCopyBuilder() { return newCopyBuilder(null); } public static KlassifikasjonSlett.Builder builder() { return new KlassifikasjonSlett.Builder(null, null, false); } public static<_B >KlassifikasjonSlett.Builder<_B> copyOf(final KlassifikasjonSlett _other) { final KlassifikasjonSlett.Builder<_B> _newBuilder = new KlassifikasjonSlett.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 KlassifikasjonSlett.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; } } public<_B >KlassifikasjonSlett.Builder<_B> newCopyBuilder(final _B _parentBuilder, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return new KlassifikasjonSlett.Builder<_B>(_parentBuilder, this, true, _propertyTree, _propertyTreeUse); } public KlassifikasjonSlett.Builder newCopyBuilder(final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { return newCopyBuilder(null, _propertyTree, _propertyTreeUse); } public static<_B >KlassifikasjonSlett.Builder<_B> copyOf(final KlassifikasjonSlett _other, final PropertyTree _propertyTree, final PropertyTreeUse _propertyTreeUse) { final KlassifikasjonSlett.Builder<_B> _newBuilder = new KlassifikasjonSlett.Builder<_B>(null, null, false); _other.copyTo(_newBuilder, _propertyTree, _propertyTreeUse); return _newBuilder; } public static KlassifikasjonSlett.Builder copyExcept(final KlassifikasjonSlett _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.EXCLUDE); } public static KlassifikasjonSlett.Builder copyOnly(final KlassifikasjonSlett _other, final PropertyTree _propertyTree) { return copyOf(_other, _propertyTree, PropertyTreeUse.INCLUDE); } public static class Builder<_B >implements Buildable { protected final _B _parentBuilder; protected final KlassifikasjonSlett _storedValue; private String klassifikasjonssystemID; public Builder(final _B _parentBuilder, final KlassifikasjonSlett _other, final boolean _copy) { this._parentBuilder = _parentBuilder; if (_other!= null) { if (_copy) { _storedValue = null; this.klassifikasjonssystemID = _other.klassifikasjonssystemID; } else { _storedValue = _other; } } else { _storedValue = null; } } public Builder(final _B _parentBuilder, final KlassifikasjonSlett _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; } } else { _storedValue = _other; } } else { _storedValue = null; } } public _B end() { return this._parentBuilder; } protected<_P extends KlassifikasjonSlett >_P init(final _P _product) { _product.klassifikasjonssystemID = this.klassifikasjonssystemID; return _product; } /** * Sets the new value of "klassifikasjonssystemID" (any previous value will be * replaced) * * @param klassifikasjonssystemID * New value of the "klassifikasjonssystemID" property. */ public KlassifikasjonSlett.Builder<_B> withKlassifikasjonssystemID(final String klassifikasjonssystemID) { this.klassifikasjonssystemID = klassifikasjonssystemID; return this; } @Override public KlassifikasjonSlett build() { if (_storedValue == null) { return this.init(new KlassifikasjonSlett()); } else { return ((KlassifikasjonSlett) _storedValue); } } public KlassifikasjonSlett.Builder<_B> copyOf(final KlassifikasjonSlett _other) { _other.copyTo(this); return this; } public KlassifikasjonSlett.Builder<_B> copyOf(final KlassifikasjonSlett.Builder _other) { return copyOf(_other.build()); } } public static class Select extends KlassifikasjonSlett.Selector { Select() { super(null, null, null); } public static KlassifikasjonSlett.Select _root() { return new KlassifikasjonSlett.Select(); } } public static class Selector , TParent > extends com.kscs.util.jaxb.Selector { private com.kscs.util.jaxb.Selector> klassifikasjonssystemID = 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()); } 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); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy