- ZustimmungGesundheitsdaten wird zur allgemeineneren Einwilligung

- 3 Typen von Einwilligungen
- Bezugsberechtigungen werden Bestandteil des Produktbaums (Ebene Produkt)
- BezugsberechtigungNamentlich kann mehrere Personen enthalten
- Sicherstellungen sind Teil des Produktbaums
This commit is contained in:
2020-07-09 16:38:34 +02:00
parent 4361ebad3c
commit 04ac64ef4c
25 changed files with 484 additions and 524 deletions

View File

@@ -1,6 +1,8 @@
package at.vvo.omds.types.omds3Types.r1_6_0.common;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
@@ -20,10 +22,21 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
* <sequence>
* <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="Unwiderruflich" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="NamenlichesBezugsrecht" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
* <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="Zugunsten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
@@ -33,22 +46,118 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BezugsberechtigungNamentlich", propOrder = {
"prozentsatz",
"unwiderruflich",
"zugunsten"
"namenlichesBezugsrecht"
})
public class BezugsberechtigungNamentlich
extends BezugsberechtigungType
{
@XmlElement(name = "Prozentsatz")
protected Double prozentsatz;
@XmlElement(name = "Unwiderruflich")
protected boolean unwiderruflich;
@XmlElement(name = "NamenlichesBezugsrecht", required = true)
protected List<BezugsberechtigungNamentlich.NamenlichesBezugsrecht> namenlichesBezugsrecht;
/**
* Ruft den Wert der unwiderruflich-Eigenschaft ab.
*
*/
public boolean isUnwiderruflich() {
return unwiderruflich;
}
/**
* Legt den Wert der unwiderruflich-Eigenschaft fest.
*
*/
public void setUnwiderruflich(boolean value) {
this.unwiderruflich = value;
}
/**
* Gets the value of the namenlichesBezugsrecht property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the namenlichesBezugsrecht property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getNamenlichesBezugsrecht().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link BezugsberechtigungNamentlich.NamenlichesBezugsrecht }
*
*
*/
public List<BezugsberechtigungNamentlich.NamenlichesBezugsrecht> getNamenlichesBezugsrecht() {
if (namenlichesBezugsrecht == null) {
namenlichesBezugsrecht = new ArrayList<BezugsberechtigungNamentlich.NamenlichesBezugsrecht>();
}
return this.namenlichesBezugsrecht;
}
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/&gt;
* &lt;element name="Zugunsten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"personRefLfnr",
"prozentsatz",
"zugunsten"
})
public static class NamenlichesBezugsrecht {
@XmlElement(name = "PersonRefLfnr")
@XmlSchemaType(name = "unsignedShort")
protected int personRefLfnr;
@XmlElement(name = "Prozentsatz")
protected Double prozentsatz;
@XmlElement(name = "Zugunsten")
@XmlSchemaType(name = "unsignedShort")
protected int zugunsten;
/**
* Ruft den Wert der personRefLfnr-Eigenschaft ab.
*
*/
public int getPersonRefLfnr() {
return personRefLfnr;
}
/**
* Legt den Wert der personRefLfnr-Eigenschaft fest.
*
*/
public void setPersonRefLfnr(int value) {
this.personRefLfnr = value;
}
/**
* Ruft den Wert der prozentsatz-Eigenschaft ab.
*
@@ -73,22 +182,6 @@ public class BezugsberechtigungNamentlich
this.prozentsatz = value;
}
/**
* Ruft den Wert der unwiderruflich-Eigenschaft ab.
*
*/
public boolean isUnwiderruflich() {
return unwiderruflich;
}
/**
* Legt den Wert der unwiderruflich-Eigenschaft fest.
*
*/
public void setUnwiderruflich(boolean value) {
this.unwiderruflich = value;
}
/**
* Ruft den Wert der zugunsten-Eigenschaft ab.
*
@@ -106,3 +199,5 @@ public class BezugsberechtigungNamentlich
}
}
}

View File

@@ -4,7 +4,6 @@ package at.vvo.omds.types.omds3Types.r1_6_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
@@ -29,7 +28,6 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
@@ -40,8 +38,7 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Bezugsberechtigung_Type", propOrder = {
"art",
"personRefLfnr"
"art"
})
@XmlSeeAlso({
BezugsberechtigungGesetzlicheErbenType.class,
@@ -56,9 +53,6 @@ public abstract class BezugsberechtigungType {
@XmlElement(name = "Art")
protected short art;
@XmlElement(name = "PersonRefLfnr")
@XmlSchemaType(name = "unsignedShort")
protected int personRefLfnr;
/**
* Ruft den Wert der art-Eigenschaft ab.
@@ -76,20 +70,4 @@ public abstract class BezugsberechtigungType {
this.art = value;
}
/**
* Ruft den Wert der personRefLfnr-Eigenschaft ab.
*
*/
public int getPersonRefLfnr() {
return personRefLfnr;
}
/**
* Legt den Wert der personRefLfnr-Eigenschaft fest.
*
*/
public void setPersonRefLfnr(int value) {
this.personRefLfnr = value;
}
}

View File

@@ -27,6 +27,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VerkehrsrechtsschutzKfz
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/&gt;
* &lt;element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -39,6 +40,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VerkehrsrechtsschutzKfz
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Elementarprodukt_Type", propOrder = {
"vtgBeg",
"refSicherstellungLfnr",
"zusaetzlicheElementarproduktdaten"
})
@XmlSeeAlso({
@@ -53,6 +55,9 @@ public abstract class ElementarproduktType
@XmlElement(name = "VtgBeg")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vtgBeg;
@XmlElement(name = "RefSicherstellungLfnr")
@XmlSchemaType(name = "unsignedShort")
protected Integer refSicherstellungLfnr;
@XmlElement(name = "ZusaetzlicheElementarproduktdaten")
protected List<ZusaetzlicheElementarproduktdatenType> zusaetzlicheElementarproduktdaten;
@@ -80,6 +85,30 @@ public abstract class ElementarproduktType
this.vtgBeg = value;
}
/**
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRefSicherstellungLfnr() {
return refSicherstellungLfnr;
}
/**
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRefSicherstellungLfnr(Integer value) {
this.refSicherstellungLfnr = value;
}
/**
* Gets the value of the zusaetzlicheElementarproduktdaten property.
*

View File

@@ -53,6 +53,14 @@ public class ObjectFactory {
return new ZahlwegType();
}
/**
* Create an instance of {@link BezugsberechtigungNamentlich }
*
*/
public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() {
return new BezugsberechtigungNamentlich();
}
/**
* Create an instance of {@link ObjektIdType }
*
@@ -229,14 +237,6 @@ public class ObjectFactory {
return new BezugsberechtigungUeberbringerType();
}
/**
* Create an instance of {@link BezugsberechtigungNamentlich }
*
*/
public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() {
return new BezugsberechtigungNamentlich();
}
/**
* Create an instance of {@link BezugsberechtigungVersicherungsnehmerType }
*
@@ -630,11 +630,43 @@ public class ObjectFactory {
}
/**
* Create an instance of {@link ZustimmungGesundheitsdatenType }
* Create an instance of {@link EinwilligungType }
*
*/
public ZustimmungGesundheitsdatenType createZustimmungGesundheitsdatenType() {
return new ZustimmungGesundheitsdatenType();
public EinwilligungType createEinwilligungType() {
return new EinwilligungType();
}
/**
* Create an instance of {@link EinwilligungPersDatenType }
*
*/
public EinwilligungPersDatenType createEinwilligungPersDatenType() {
return new EinwilligungPersDatenType();
}
/**
* Create an instance of {@link EinwVerarbGesDatenType }
*
*/
public EinwVerarbGesDatenType createEinwVerarbGesDatenType() {
return new EinwVerarbGesDatenType();
}
/**
* Create an instance of {@link EinwGesDatenVNType }
*
*/
public EinwGesDatenVNType createEinwGesDatenVNType() {
return new EinwGesDatenVNType();
}
/**
* Create an instance of {@link EinwSprachaufzType }
*
*/
public EinwSprachaufzType createEinwSprachaufzType() {
return new EinwSprachaufzType();
}
/**
@@ -693,6 +725,14 @@ public class ObjectFactory {
return new ZahlwegType.Kundenkonto();
}
/**
* Create an instance of {@link BezugsberechtigungNamentlich.NamenlichesBezugsrecht }
*
*/
public BezugsberechtigungNamentlich.NamenlichesBezugsrecht createBezugsberechtigungNamentlichNamenlichesBezugsrecht() {
return new BezugsberechtigungNamentlich.NamenlichesBezugsrecht();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}}
*

View File

@@ -8,10 +8,8 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.ProduktLebenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.ProduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.ProduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.ProduktUnfallType;
/**
@@ -46,11 +44,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.ProduktUnfallType;
"beschreibungTxt"
})
@XmlSeeAlso({
ProduktUnfallType.class,
ProduktMitVpType.class,
ProduktSachPrivatType.class,
ProduktRechtsschutzType.class,
ProduktLebenType.class
ProduktMitVpType.class
})
public abstract class ProduktGenerischType
extends ProduktType

View File

@@ -31,6 +31,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.ZusatzproduktKfzType;
* &lt;element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/&gt;
* &lt;element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/&gt;
* &lt;element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/&gt;
* &lt;element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -47,6 +48,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.ZusatzproduktKfzType;
"zahlweg",
"zahlrhythmus",
"hauptfaelligkeit",
"refSicherstellungLfnr",
"zusaetzlicheProduktdaten"
})
@XmlSeeAlso({
@@ -70,6 +72,9 @@ public abstract class ProduktType
@XmlElement(name = "Hauptfaelligkeit", required = true)
@XmlSchemaType(name = "gMonthDay")
protected XMLGregorianCalendar hauptfaelligkeit;
@XmlElement(name = "RefSicherstellungLfnr")
@XmlSchemaType(name = "unsignedShort")
protected Integer refSicherstellungLfnr;
@XmlElement(name = "ZusaetzlicheProduktdaten")
protected List<ZusaetzlicheProduktdatenType> zusaetzlicheProduktdaten;
@@ -193,6 +198,30 @@ public abstract class ProduktType
this.hauptfaelligkeit = value;
}
/**
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRefSicherstellungLfnr() {
return refSicherstellungLfnr;
}
/**
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRefSicherstellungLfnr(Integer value) {
this.refSicherstellungLfnr = value;
}
/**
* Gets the value of the zusaetzlicheProduktdaten property.
*

View File

@@ -8,9 +8,8 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.BezugsberechtigungType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.EinwilligungType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.SicherstellungType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ZustimmungGesundheitsdatenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SpezAntragRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.AntragSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezAntragUnfallType;
@@ -28,9 +27,8 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezAntragUnfallType
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragBasis_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Bezugsberechtigungen" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="ZustimmungGesundheitsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZustimmungGesundheitsdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Einwilligung" type="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -41,9 +39,8 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezAntragUnfallType
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntrag_Type", propOrder = {
"bezugsberechtigungen",
"sicherstellungen",
"zustimmungGesundheitsdaten"
"einwilligung"
})
@XmlSeeAlso({
SpezAntragUnfallType.class,
@@ -55,41 +52,10 @@ public abstract class SpezAntragType
extends SpezAntragBasisType
{
@XmlElement(name = "Bezugsberechtigungen")
protected List<BezugsberechtigungType> bezugsberechtigungen;
@XmlElement(name = "Sicherstellungen")
protected List<SicherstellungType> sicherstellungen;
@XmlElement(name = "ZustimmungGesundheitsdaten")
protected List<ZustimmungGesundheitsdatenType> zustimmungGesundheitsdaten;
/**
* Gets the value of the bezugsberechtigungen property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the bezugsberechtigungen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getBezugsberechtigungen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link BezugsberechtigungType }
*
*
*/
public List<BezugsberechtigungType> getBezugsberechtigungen() {
if (bezugsberechtigungen == null) {
bezugsberechtigungen = new ArrayList<BezugsberechtigungType>();
}
return this.bezugsberechtigungen;
}
@XmlElement(name = "Einwilligung")
protected List<EinwilligungType> einwilligung;
/**
* Gets the value of the sicherstellungen property.
@@ -121,32 +87,32 @@ public abstract class SpezAntragType
}
/**
* Gets the value of the zustimmungGesundheitsdaten property.
* Gets the value of the einwilligung property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the zustimmungGesundheitsdaten property.
* This is why there is not a <CODE>set</CODE> method for the einwilligung property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZustimmungGesundheitsdaten().add(newItem);
* getEinwilligung().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZustimmungGesundheitsdatenType }
* {@link EinwilligungType }
*
*
*/
public List<ZustimmungGesundheitsdatenType> getZustimmungGesundheitsdaten() {
if (zustimmungGesundheitsdaten == null) {
zustimmungGesundheitsdaten = new ArrayList<ZustimmungGesundheitsdatenType>();
public List<EinwilligungType> getEinwilligung() {
if (einwilligung == null) {
einwilligung = new ArrayList<EinwilligungType>();
}
return this.zustimmungGesundheitsdaten;
return this.einwilligung;
}
}

View File

@@ -121,14 +121,6 @@ public class ObjectFactory {
return new ProduktLebenType();
}
/**
* Create an instance of {@link ZusatzproduktLebenType }
*
*/
public ZusatzproduktLebenType createZusatzproduktLebenType() {
return new ZusatzproduktLebenType();
}
/**
* Create an instance of {@link TarifLebenType }
*
@@ -185,6 +177,14 @@ public class ObjectFactory {
return new ZusatzversicherungUnfallinvaliditaetType();
}
/**
* Create an instance of {@link ZusatzproduktLebenType }
*
*/
public ZusatzproduktLebenType createZusatzproduktLebenType() {
return new ZusatzproduktLebenType();
}
/**
* Create an instance of {@link RentenoptionType }
*

View File

@@ -6,9 +6,8 @@ import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktMitVpType;
/**
@@ -21,11 +20,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktGenerischType;
* <pre>
* &lt;complexType name="ProduktLeben_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded"/&gt;
* &lt;element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -36,51 +33,14 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktGenerischType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktLeben_Type", propOrder = {
"versPersonenRefLfnr",
"tarife",
"refSicherstellungLfnr"
"tarife"
})
public class ProduktLebenType
extends ProduktGenerischType
extends ProduktMitVpType
{
@XmlElement(name = "VersPersonenRefLfnr", type = Integer.class)
@XmlSchemaType(name = "unsignedShort")
protected List<Integer> versPersonenRefLfnr;
@XmlElement(name = "Tarife")
protected List<TarifLebenType> tarife;
@XmlElement(name = "RefSicherstellungLfnr")
@XmlSchemaType(name = "unsignedShort")
protected Integer refSicherstellungLfnr;
/**
* Gets the value of the versPersonenRefLfnr property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the versPersonenRefLfnr property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getVersPersonenRefLfnr().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Integer }
*
*
*/
public List<Integer> getVersPersonenRefLfnr() {
if (versPersonenRefLfnr == null) {
versPersonenRefLfnr = new ArrayList<Integer>();
}
return this.versPersonenRefLfnr;
}
/**
* Gets the value of the tarife property.
@@ -111,28 +71,4 @@ public class ProduktLebenType
return this.tarife;
}
/**
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRefSicherstellungLfnr() {
return refSicherstellungLfnr;
}
/**
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRefSicherstellungLfnr(Integer value) {
this.refSicherstellungLfnr = value;
}
}

View File

@@ -26,7 +26,6 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.ElementarproduktGenerischType;
* &lt;sequence&gt;
* &lt;element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/&gt;
* &lt;element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/&gt;
* &lt;element name="RefSicherstellungLfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMultiEnum_Type" minOccurs="0"/&gt;
* &lt;element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
@@ -42,7 +41,6 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.ElementarproduktGenerischType;
@XmlType(name = "TarifLeben_Type", propOrder = {
"garantierteAblebenssumme",
"rentenoption",
"refSicherstellungLfdNr",
"fondsauswahl",
"versPersonenRefLfnr",
"zusatzbausteine"
@@ -55,9 +53,6 @@ public class TarifLebenType
protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme;
@XmlElement(name = "Rentenoption")
protected RentenoptionType rentenoption;
@XmlElement(name = "RefSicherstellungLfdNr")
@XmlSchemaType(name = "unsignedShort")
protected Integer refSicherstellungLfdNr;
@XmlElement(name = "Fondsauswahl")
protected AttributMultiEnumType fondsauswahl;
@XmlElement(name = "VersPersonenRefLfnr", type = Integer.class)
@@ -114,30 +109,6 @@ public class TarifLebenType
this.rentenoption = value;
}
/**
* Ruft den Wert der refSicherstellungLfdNr-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRefSicherstellungLfdNr() {
return refSicherstellungLfdNr;
}
/**
* Legt den Wert der refSicherstellungLfdNr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRefSicherstellungLfdNr(Integer value) {
this.refSicherstellungLfdNr = value;
}
/**
* Ruft den Wert der fondsauswahl-Eigenschaft ab.
*

View File

@@ -48,8 +48,8 @@ public class ZusatzversicherungUnfallinvaliditaetType
* <p>
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
* Zeile 149 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 967 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd
* Zeile 137 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 959 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd
* <p>
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:

View File

@@ -48,8 +48,8 @@ public class ZusatzversicherungUnfalltodType
* <p>
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
* Zeile 137 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 967 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd
* Zeile 125 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 959 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd
* <p>
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:

View File

@@ -6,9 +6,8 @@ import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktMitVpType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
@@ -22,11 +21,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
* <pre>
* &lt;complexType name="ProduktUnfall_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded"/&gt;
* &lt;element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -38,55 +35,18 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktUnfall_Type", propOrder = {
"versPersonenRefLfnr",
"leistungsarten",
"refSicherstellungLfnr",
"selbstbehalt"
})
public class ProduktUnfallType
extends ProduktGenerischType
extends ProduktMitVpType
{
@XmlElement(name = "VersPersonenRefLfnr", type = Integer.class)
@XmlSchemaType(name = "unsignedShort")
protected List<Integer> versPersonenRefLfnr;
@XmlElement(name = "Leistungsarten")
protected List<LeistungsartUnfallType> leistungsarten;
@XmlElement(name = "RefSicherstellungLfnr")
@XmlSchemaType(name = "unsignedShort")
protected Integer refSicherstellungLfnr;
@XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt;
/**
* Gets the value of the versPersonenRefLfnr property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the versPersonenRefLfnr property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getVersPersonenRefLfnr().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Integer }
*
*
*/
public List<Integer> getVersPersonenRefLfnr() {
if (versPersonenRefLfnr == null) {
versPersonenRefLfnr = new ArrayList<Integer>();
}
return this.versPersonenRefLfnr;
}
/**
* Gets the value of the leistungsarten property.
*
@@ -116,30 +76,6 @@ public class ProduktUnfallType
return this.leistungsarten;
}
/**
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRefSicherstellungLfnr() {
return refSicherstellungLfnr;
}
/**
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRefSicherstellungLfnr(Integer value) {
this.refSicherstellungLfnr = value;
}
/**
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
*

View File

@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
protected ObjektIdType objektId;
@XmlElementRefs({
@XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class),
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
@XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class)
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class)
})
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
@XmlElement(name = "WirksamtkeitAb", required = true)
@@ -115,8 +115,8 @@ public class ChangeCommunicationObjectRequestType
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
*
*

View File

@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
/**
* This class was generated by Apache CXF 3.2.0
* 2020-07-09T08:54:43.646+02:00
* 2020-07-09T16:05:12.433+02:00
* Generated source version: 3.2.0
*
*/

View File

@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 3.2.0
* 2020-07-09T08:54:43.568+02:00
* 2020-07-09T16:05:12.339+02:00
* Generated source version: 3.2.0
*
*/

View File

@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 3.2.0
* 2020-07-09T08:54:43.615+02:00
* 2020-07-09T16:05:12.407+02:00
* Generated source version: 3.2.0
*
*/

View File

@@ -19,7 +19,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 3.2.0
* 2020-07-09T08:54:43.466+02:00
* 2020-07-09T16:05:12.210+02:00
* Generated source version: 3.2.0
*
*/

View File

@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
/**
* This class was generated by Apache CXF 3.2.0
* 2020-07-09T08:54:43.557+02:00
* 2020-07-09T16:05:12.330+02:00
* Generated source version: 3.2.0
*/

View File

@@ -1247,17 +1247,31 @@
<xsd:complexContent>
<xsd:extension base="Bezugsberechtigung_Type">
<xsd:sequence>
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Referenz auf die Person</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Prozentsatz" type="xsd:double" minOccurs="0"/>
<xsd:element name="Unwiderruflich" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation>wahr, wenn das Bezugsrecht unwiderruflich ist.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="NamenlichesBezugsrecht" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Bezugsrecht für eine Person</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Referenz auf eine Person</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Prozentsatz" type="xsd:double" minOccurs="0"/>
<xsd:element name="Zugunsten" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Referenz auf die Person, zu deren Gunsten das Betzugsrecht festgelegt ist</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
@@ -1756,16 +1770,11 @@
</xsd:complexType>
<xsd:complexType name="VersichertePerson_Type">
<xsd:annotation>
<xsd:documentation>Versicherte Person basierend auf VersichertesInteresse_Type</xsd:documentation>
<xsd:documentation>Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">
<xsd:sequence>
<xsd:element name="RefPersonLfnr" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Referenz auf die Personendaten</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:choice minOccurs="0">
<xsd:element name="RisikoNatPerson" type="RisikoNatPerson_Type">
<xsd:annotation>
@@ -1934,45 +1943,6 @@
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!-- <xsd:complexType name="VersicherterBetrieb_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Versicherter Betrieb (Landwirtschaftlicher Betrieb, Verein)</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:complexContent>-->
<!-- <xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">-->
<!-- <xsd:sequence>-->
<!-- <xsd:element ref="ObjektId" minOccurs="0"/>-->
<!-- <xsd:element name="Adresse" type="omds:ADRESSE_Type"/>-->
<!-- <xsd:element name="Betriebsart" type="xsd:string" maxOccurs="unbounded"/>-->
<!-- <xsd:element name="Mitarbeiteranzahl" type="xsd:unsignedInt"/>-->
<!-- <xsd:element name="Umsatz" type="xsd:unsignedLong"/>-->
<!-- <xsd:element name="FlaecheInHektar" type="xsd:unsignedShort" minOccurs="0"/>-->
<!-- <xsd:element name="Mitgliederanzahl" type="xsd:unsignedInt" minOccurs="0"/>-->
<!-- <xsd:element name="ZusaetzlicheBetriebsdaten" type="ZusaetzlicheBetriebsdaten_Type" minOccurs="0" maxOccurs="unbounded"/>-->
<!-- </xsd:sequence>-->
<!-- </xsd:extension>-->
<!-- </xsd:complexContent>-->
<!-- </xsd:complexType>-->
<!-- <xsd:complexType name="ZusaetzlicheBetriebsdaten_Type" abstract="true">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Abstrakter Typ fuer zusaetzliche Betriebsdaten zur Erweiterung des VersicherterBetrieb_Type</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:complexType>-->
<!-- <xsd:complexType name="VersicherteLiegenschaft_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Versicherte Liegenschaft</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:complexContent>-->
<!-- <xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">-->
<!-- <xsd:sequence>-->
<!-- <xsd:element ref="ObjektId"/>-->
<!-- <xsd:element name="Adresse" type="omds:ADRESSE_Type"/>-->
<!-- <xsd:element name="BebauteFlaecheInQm" type="xsd:unsignedShort"/>-->
<!-- <xsd:element name="UeberdachteFlaecheInQm" type="xsd:unsignedShort"/>-->
<!-- </xsd:sequence>-->
<!-- </xsd:extension>-->
<!-- </xsd:complexContent>-->
<!-- </xsd:complexType>-->
<xsd:complexType name="KostenFixOderProzent_Type" final="#all">
<xsd:annotation>
<xsd:documentation>Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert</xsd:documentation>
@@ -2612,19 +2582,14 @@
<xsd:element name="Vertragsnummer" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ZustimmungGesundheitsdaten_Type">
<xsd:complexType name="Einwilligung_Type">
<xsd:annotation>
<xsd:documentation>Zustimmung Gesundheitsdaten</xsd:documentation>
<xsd:documentation>Abstrakter Typ für Einwilligung</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
<xsd:element name="Zustimmung" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Referenz auf die Person</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Type" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Ein vom Versicherungsunternehmen festlegbarer Typ für die Art der Zustimmung</xsd:documentation>
<xsd:documentation>Die Bestätigung der Zustimmung</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Text" type="xsd:string" minOccurs="0">
@@ -2632,12 +2597,47 @@
<xsd:documentation>Optional der tatsächliche Text der Zustimmung</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Zustimmung" type="xsd:boolean">
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="EinwilligungPersDaten_Type">
<xsd:annotation>
<xsd:documentation>Die Bestätigung der Zustimmung</xsd:documentation>
<xsd:documentation>Abstrakter Typ für Einwilligung personenbezogene Daten</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="Einwilligung_Type">
<xsd:sequence>
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Referenz auf die Person</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="EinwVerarbGesDaten_Type">
<xsd:annotation>
<xsd:documentation>Einwilligung Verarbeitung Gesundheitsdaten</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="EinwilligungPersDaten_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="EinwGesDatenVN_Type">
<xsd:annotation>
<xsd:documentation>Einwilligung Bekanntgabe Gesundheitsdaten an VN</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="EinwilligungPersDaten_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="EinwSprachaufz_Type">
<xsd:annotation>
<xsd:documentation>Einwilligung Sprachaufzeichnung</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="EinwilligungPersDaten_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="FATCA_Type">
<xsd:annotation>
@@ -2656,7 +2656,7 @@
<xsd:element name="Geburtsland" type="AttributEnum_Type"/>
<xsd:element name="US_Indizien" type="xsd:boolean"/>
<xsd:element name="US_Steuerpflicht" type="xsd:boolean"/>
<xsd:element name="US_TIN" type="xsd:string"/>
<xsd:element name="US_TIN" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="FATCA_SonstPersonType">
@@ -2665,7 +2665,7 @@
</xsd:annotation>
<xsd:sequence>
<xsd:element name="LandFirmensitz" type="AttributEnum_Type"/>
<xsd:element name="GIIN" type="xsd:string"/>
<xsd:element name="GIIN" type="xsd:string" minOccurs="0"/>
<xsd:element name="KonzessionFinanzen" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation>Konzession nach BWG, VAG, WAG, PKG, BMSVG, ZaDiG oder vergleichbare Konzession nach ausländischem Recht</xsd:documentation>

View File

@@ -130,7 +130,6 @@
<xsd:documentation>Daten zu etwaigen Sicherstellungen</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ZustimmungGesundheitsdaten" type="cst:ZustimmungGesundheitsdaten_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>

View File

@@ -802,6 +802,7 @@
<xsd:element name="Zahlweg" type="omds:ZahlWegCd_Type" minOccurs="0"/>
<xsd:element name="Zahlrhythmus" type="omds:ZahlRhythmCd_Type" minOccurs="0"/>
<xsd:element name="Hauptfaelligkeit" type="Hauptfaelligkeit_Type"/>
<xsd:element name="RefSicherstellungLfnr" type="xsd:unsignedShort" minOccurs="0"/>
<xsd:element name="ZusaetzlicheProduktdaten" type="ZusaetzlicheProduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
@@ -815,6 +816,7 @@
<xsd:extension base="Produktbaustein_Type">
<xsd:sequence>
<xsd:element name="VtgBeg" type="omds:Datum" minOccurs="0"/>
<xsd:element name="RefSicherstellungLfnr" type="xsd:unsignedShort" minOccurs="0"/>
<xsd:element name="ZusaetzlicheElementarproduktdaten" type="ZusaetzlicheElementarproduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
@@ -895,16 +897,6 @@
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ProduktMitVp_Type" abstract="true">
<xsd:annotation>
<xsd:documentation>Basistyp für ein Produkt mit versicherter Person</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ProduktGenerisch_Type">
<xsd:sequence/>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ElementarproduktGenerisch_Type" abstract="true">
<xsd:annotation>
<xsd:documentation>Basistyp für ein Elementarprodukt, 2. Generation</xsd:documentation>
@@ -969,6 +961,23 @@
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ProduktMitVp_Type" abstract="true">
<xsd:annotation>
<xsd:documentation>Basistyp für ein Produkt mit versicherter Person</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ProduktGenerisch_Type">
<xsd:sequence>
<xsd:element name="Bezugsberechtigungen" type="Bezugsberechtigung_Type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="VersPersonenRefLfnr" type="xsd:unsignedShort" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Referenz auf eine versicherte Person oder mehrere versicherte Personen</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="BeteiligtePersonVertrag_Type">
<xsd:annotation>
<xsd:documentation>Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind</xsd:documentation>
@@ -1274,11 +1283,6 @@
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Referenz auf die versicherte Person</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="BezugsberechtigungGesetzlicheErben_Type">
@@ -1312,18 +1316,32 @@
<xsd:complexContent>
<xsd:extension base="Bezugsberechtigung_Type">
<xsd:sequence>
<xsd:element name="Prozentsatz" type="xsd:double" minOccurs="0"/>
<xsd:element name="Unwiderruflich" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation>wahr, wenn das Bezugsrecht unwiderruflich ist.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="NamenlichesBezugsrecht" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Bezugsrecht für eine Person</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Referenz auf eine Person</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Prozentsatz" type="xsd:double" minOccurs="0"/>
<xsd:element name="Zugunsten" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Referenz auf die Person, zu deren Gunsten das Betzugsrecht festgelegt ist</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
@@ -1626,59 +1644,6 @@
</xsd:annotation>
<xsd:union memberTypes="omds:AendGrundCd_Type xsd:string"/>
</xsd:simpleType>
<!-- <xsd:simpleType name="Variante_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Typ Variante</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:restriction base="xsd:string">-->
<!-- <xsd:enumeration value="Premiumschutz"/>-->
<!-- <xsd:enumeration value="Classicschutz"/>-->
<!-- <xsd:enumeration value="Basisschutz"/>-->
<!-- </xsd:restriction>-->
<!-- </xsd:simpleType>-->
<!-- <xsd:complexType name="DeckungVs_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Type Deckung</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:sequence>-->
<!-- <xsd:element name="Versicherungssumme" type="xsd:int">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Wenn die Versicherungssumme eine Auswahlliste ist, wird der übergebene Wert in der Liste gesucht - falls nicht vorhanden bleibt der Standardwert selektiert.</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- </xsd:sequence>-->
<!-- </xsd:complexType>-->
<!-- <xsd:complexType name="DeckungVsVI_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Type Deckung </xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:sequence>-->
<!-- <xsd:element name="deckungActive" type="xsd:boolean"/>-->
<!-- <xsd:element name="deckungVs" type="xsd:int">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Wenn die Versicherungssumme eine Auswahlliste ist, wird der übergebene Wert in der Liste gesucht - falls nicht vorhanden bleibt der Standardwert selektiert.</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- <xsd:element name="VersichertesInteresse">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Definiert zu welchem versicherten Risiko die Deckung gehört</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- </xsd:sequence>-->
<!-- </xsd:complexType>-->
<!-- <xsd:complexType name="DeckungProzent_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Type Deckung Prozent</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:sequence>-->
<!-- <xsd:element name="deckungActive" type="xsd:boolean"/>-->
<!-- <xsd:element name="deckungProzent" type="xsd:int">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Wenn der Prozentwert eine Auswahlliste ist, wird der übergebene Wert in der Liste gesucht - falls nicht vorhanden bleibt der Standardwert selektiert.</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- </xsd:sequence>-->
<!-- </xsd:complexType>-->
<xsd:complexType name="DokumentInfo_Type">
<xsd:annotation>
<xsd:documentation>Typ mit Informationen zu einem Dokument (kann auch das Dokument selbst enthalten)</xsd:documentation>
@@ -2047,45 +2012,45 @@
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="VersicherterBetrieb_Type">
<xsd:annotation>
<xsd:documentation>Versicherter Betrieb (Landwirtschaftlicher Betrieb, Verein)</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">
<xsd:sequence>
<xsd:element ref="ObjektId" minOccurs="0"/>
<xsd:element name="Adresse" type="omds:ADRESSE_Type"/>
<xsd:element name="Betriebsart" type="xsd:string" maxOccurs="unbounded"/>
<xsd:element name="Mitarbeiteranzahl" type="xsd:unsignedInt"/>
<xsd:element name="Umsatz" type="xsd:unsignedLong"/>
<xsd:element name="FlaecheInHektar" type="xsd:unsignedShort" minOccurs="0"/>
<xsd:element name="Mitgliederanzahl" type="xsd:unsignedInt" minOccurs="0"/>
<xsd:element name="ZusaetzlicheBetriebsdaten" type="ZusaetzlicheBetriebsdaten_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ZusaetzlicheBetriebsdaten_Type" abstract="true">
<xsd:annotation>
<xsd:documentation>Abstrakter Typ fuer zusaetzliche Betriebsdaten zur Erweiterung des VersicherterBetrieb_Type</xsd:documentation>
</xsd:annotation>
</xsd:complexType>
<xsd:complexType name="VersicherteLiegenschaft_Type">
<xsd:annotation>
<xsd:documentation>Versicherte Liegenschaft</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">
<xsd:sequence>
<xsd:element ref="ObjektId"/>
<xsd:element name="Adresse" type="omds:ADRESSE_Type"/>
<xsd:element name="BebauteFlaecheInQm" type="xsd:unsignedShort"/>
<xsd:element name="UeberdachteFlaecheInQm" type="xsd:unsignedShort"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<!-- <xsd:complexType name="VersicherterBetrieb_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Versicherter Betrieb (Landwirtschaftlicher Betrieb, Verein)</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:complexContent>-->
<!-- <xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">-->
<!-- <xsd:sequence>-->
<!-- <xsd:element ref="ObjektId" minOccurs="0"/>-->
<!-- <xsd:element name="Adresse" type="omds:ADRESSE_Type"/>-->
<!-- <xsd:element name="Betriebsart" type="xsd:string" maxOccurs="unbounded"/>-->
<!-- <xsd:element name="Mitarbeiteranzahl" type="xsd:unsignedInt"/>-->
<!-- <xsd:element name="Umsatz" type="xsd:unsignedLong"/>-->
<!-- <xsd:element name="FlaecheInHektar" type="xsd:unsignedShort" minOccurs="0"/>-->
<!-- <xsd:element name="Mitgliederanzahl" type="xsd:unsignedInt" minOccurs="0"/>-->
<!-- <xsd:element name="ZusaetzlicheBetriebsdaten" type="ZusaetzlicheBetriebsdaten_Type" minOccurs="0" maxOccurs="unbounded"/>-->
<!-- </xsd:sequence>-->
<!-- </xsd:extension>-->
<!-- </xsd:complexContent>-->
<!-- </xsd:complexType>-->
<!-- <xsd:complexType name="ZusaetzlicheBetriebsdaten_Type" abstract="true">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Abstrakter Typ fuer zusaetzliche Betriebsdaten zur Erweiterung des VersicherterBetrieb_Type</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:complexType>-->
<!-- <xsd:complexType name="VersicherteLiegenschaft_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Versicherte Liegenschaft</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:complexContent>-->
<!-- <xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">-->
<!-- <xsd:sequence>-->
<!-- <xsd:element ref="ObjektId"/>-->
<!-- <xsd:element name="Adresse" type="omds:ADRESSE_Type"/>-->
<!-- <xsd:element name="BebauteFlaecheInQm" type="xsd:unsignedShort"/>-->
<!-- <xsd:element name="UeberdachteFlaecheInQm" type="xsd:unsignedShort"/>-->
<!-- </xsd:sequence>-->
<!-- </xsd:extension>-->
<!-- </xsd:complexContent>-->
<!-- </xsd:complexType>-->
<xsd:complexType name="KostenFixOderProzent_Type" final="#all">
<xsd:annotation>
<xsd:documentation>Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert</xsd:documentation>
@@ -2725,19 +2690,14 @@
<xsd:element name="Vertragsnummer" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ZustimmungGesundheitsdaten_Type">
<xsd:complexType name="Einwilligung_Type">
<xsd:annotation>
<xsd:documentation>Zustimmung Gesundheitsdaten</xsd:documentation>
<xsd:documentation>Abstrakter Typ für Einwilligung</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
<xsd:element name="Zustimmung" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Referenz auf die Person</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Type" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Ein vom Versicherungsunternehmen festlegbarer Typ für die Art der Zustimmung</xsd:documentation>
<xsd:documentation>Die Bestätigung der Zustimmung</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Text" type="xsd:string" minOccurs="0">
@@ -2745,12 +2705,47 @@
<xsd:documentation>Optional der tatsächliche Text der Zustimmung</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Zustimmung" type="xsd:boolean">
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="EinwilligungPersDaten_Type">
<xsd:annotation>
<xsd:documentation>Die Bestätigung der Zustimmung</xsd:documentation>
<xsd:documentation>Abstrakter Typ für Einwilligung personenbezogene Daten</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="Einwilligung_Type">
<xsd:sequence>
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
<xsd:annotation>
<xsd:documentation>Referenz auf die Person</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="EinwVerarbGesDaten_Type">
<xsd:annotation>
<xsd:documentation>Einwilligung Verarbeitung Gesundheitsdaten</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="EinwilligungPersDaten_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="EinwGesDatenVN_Type">
<xsd:annotation>
<xsd:documentation>Einwilligung Bekanntgabe Gesundheitsdaten an VN</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="EinwilligungPersDaten_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="EinwSprachaufz_Type">
<xsd:annotation>
<xsd:documentation>Einwilligung Sprachaufzeichnung</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="EinwilligungPersDaten_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="FATCA_Type">
<xsd:annotation>

View File

@@ -124,13 +124,16 @@
<xsd:complexContent>
<xsd:extension base="SpezAntragBasis_Type">
<xsd:sequence>
<xsd:element name="Bezugsberechtigungen" type="cst:Bezugsberechtigung_Type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Sicherstellungen" type="cst:Sicherstellung_Type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Daten zu etwaigen Sicherstellungen</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ZustimmungGesundheitsdaten" type="cst:ZustimmungGesundheitsdaten_Type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Einwilligung" type="cst:Einwilligung_Type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Zustimmung zu speziellen Fragen, z.B. Datenverarbeitung von Gesundheitsdaten</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>

View File

@@ -31,28 +31,17 @@
<xsd:documentation>Typ für ein Produkt in der Sparte Leben.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="cst:ProduktGenerisch_Type">
<xsd:extension base="cst:ProduktMitVp_Type">
<xsd:sequence>
<xsd:element name="VersPersonenRefLfnr" type="xsd:unsignedShort" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Referenz auf versicherte Personen</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Tarife" type="TarifLeben_Type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Liste der Tarife</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="RefSicherstellungLfnr" type="xsd:unsignedShort" minOccurs="0"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ZusatzproduktLeben_Type">
<xsd:annotation>
<xsd:documentation>Abstrakter Typ um Zusatzprodukte (Ebene Produkt) im Verkausfprodukt Leben zu definieren</xsd:documentation>
</xsd:annotation>
</xsd:complexType>
<xsd:complexType name="TarifLeben_Type">
<xsd:annotation>
<xsd:documentation>Typ für ein Elementarprodukt in der Sparte Leben.</xsd:documentation>
@@ -62,7 +51,6 @@
<xsd:sequence>
<xsd:element name="GarantierteAblebenssumme" type="VersicherungssummeZusatzbaustein_Type"/>
<xsd:element name="Rentenoption" type="Rentenoption_Type" minOccurs="0"/>
<xsd:element name="RefSicherstellungLfdNr" type="xsd:unsignedShort" minOccurs="0"/>
<xsd:element name="Fondsauswahl" type="cst:AttributMultiEnum_Type" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Bei fondsgebundenen Produkten die Vorgabe der gewünschten Fonds.</xsd:documentation>
@@ -151,6 +139,11 @@
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ZusatzproduktLeben_Type">
<xsd:annotation>
<xsd:documentation>Abstrakter Typ um Zusatzprodukte (Ebene Produkt) im Verkausfprodukt Leben zu definieren</xsd:documentation>
</xsd:annotation>
</xsd:complexType>
<xsd:complexType name="Rentenoption_Type">
<xsd:annotation>
<xsd:documentation>Vorgefertigter Typ für eine Rentenoption</xsd:documentation>

View File

@@ -39,19 +39,13 @@
<xsd:documentation>Typ für ein Produkt in der Sparte Unfall. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="cst:ProduktGenerisch_Type">
<xsd:extension base="cst:ProduktMitVp_Type">
<xsd:sequence>
<xsd:element name="VersPersonenRefLfnr" type="xsd:unsignedShort" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Referenz auf versicherte Personen</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Leistungsarten" type="LeistungsartUnfall_Type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Liste der Elementarprodukte</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="RefSicherstellungLfnr" type="xsd:unsignedShort" minOccurs="0"/>
<xsd:element name="Selbstbehalt" type="cst:Selbstbehalt_Type" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Selbstbehalt über alle Elementarprodukte einheitlich.</xsd:documentation>