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