- 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:
@@ -1,6 +1,8 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_6_0.common;
|
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.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
@@ -20,10 +22,21 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||||
* <sequence>
|
* <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="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"/>
|
* <element name="Zugunsten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
@@ -33,22 +46,118 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "BezugsberechtigungNamentlich", propOrder = {
|
@XmlType(name = "BezugsberechtigungNamentlich", propOrder = {
|
||||||
"prozentsatz",
|
|
||||||
"unwiderruflich",
|
"unwiderruflich",
|
||||||
"zugunsten"
|
"namenlichesBezugsrecht"
|
||||||
})
|
})
|
||||||
public class BezugsberechtigungNamentlich
|
public class BezugsberechtigungNamentlich
|
||||||
extends BezugsberechtigungType
|
extends BezugsberechtigungType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Prozentsatz")
|
|
||||||
protected Double prozentsatz;
|
|
||||||
@XmlElement(name = "Unwiderruflich")
|
@XmlElement(name = "Unwiderruflich")
|
||||||
protected boolean 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>
|
||||||
|
* <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>
|
||||||
|
* </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")
|
@XmlElement(name = "Zugunsten")
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
protected int zugunsten;
|
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.
|
* Ruft den Wert der prozentsatz-Eigenschaft ab.
|
||||||
*
|
*
|
||||||
@@ -73,22 +182,6 @@ public class BezugsberechtigungNamentlich
|
|||||||
this.prozentsatz = value;
|
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.
|
* Ruft den Wert der zugunsten-Eigenschaft ab.
|
||||||
*
|
*
|
||||||
@@ -105,4 +198,6 @@ public class BezugsberechtigungNamentlich
|
|||||||
this.zugunsten = value;
|
this.zugunsten = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
@@ -29,7 +28,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
* <element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -40,8 +38,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "Bezugsberechtigung_Type", propOrder = {
|
@XmlType(name = "Bezugsberechtigung_Type", propOrder = {
|
||||||
"art",
|
"art"
|
||||||
"personRefLfnr"
|
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
BezugsberechtigungGesetzlicheErbenType.class,
|
BezugsberechtigungGesetzlicheErbenType.class,
|
||||||
@@ -56,9 +53,6 @@ public abstract class BezugsberechtigungType {
|
|||||||
|
|
||||||
@XmlElement(name = "Art")
|
@XmlElement(name = "Art")
|
||||||
protected short art;
|
protected short art;
|
||||||
@XmlElement(name = "PersonRefLfnr")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected int personRefLfnr;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der art-Eigenschaft ab.
|
* Ruft den Wert der art-Eigenschaft ab.
|
||||||
@@ -76,20 +70,4 @@ public abstract class BezugsberechtigungType {
|
|||||||
this.art = value;
|
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VerkehrsrechtsschutzKfz
|
|||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
|
* <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
|
||||||
|
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
* <element name="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
@@ -39,6 +40,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VerkehrsrechtsschutzKfz
|
|||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "Elementarprodukt_Type", propOrder = {
|
@XmlType(name = "Elementarprodukt_Type", propOrder = {
|
||||||
"vtgBeg",
|
"vtgBeg",
|
||||||
|
"refSicherstellungLfnr",
|
||||||
"zusaetzlicheElementarproduktdaten"
|
"zusaetzlicheElementarproduktdaten"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
@@ -53,6 +55,9 @@ public abstract class ElementarproduktType
|
|||||||
@XmlElement(name = "VtgBeg")
|
@XmlElement(name = "VtgBeg")
|
||||||
@XmlSchemaType(name = "date")
|
@XmlSchemaType(name = "date")
|
||||||
protected XMLGregorianCalendar vtgBeg;
|
protected XMLGregorianCalendar vtgBeg;
|
||||||
|
@XmlElement(name = "RefSicherstellungLfnr")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer refSicherstellungLfnr;
|
||||||
@XmlElement(name = "ZusaetzlicheElementarproduktdaten")
|
@XmlElement(name = "ZusaetzlicheElementarproduktdaten")
|
||||||
protected List<ZusaetzlicheElementarproduktdatenType> zusaetzlicheElementarproduktdaten;
|
protected List<ZusaetzlicheElementarproduktdatenType> zusaetzlicheElementarproduktdaten;
|
||||||
|
|
||||||
@@ -80,6 +85,30 @@ public abstract class ElementarproduktType
|
|||||||
this.vtgBeg = value;
|
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.
|
* Gets the value of the zusaetzlicheElementarproduktdaten property.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -53,6 +53,14 @@ public class ObjectFactory {
|
|||||||
return new ZahlwegType();
|
return new ZahlwegType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BezugsberechtigungNamentlich }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() {
|
||||||
|
return new BezugsberechtigungNamentlich();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link ObjektIdType }
|
* Create an instance of {@link ObjektIdType }
|
||||||
*
|
*
|
||||||
@@ -229,14 +237,6 @@ public class ObjectFactory {
|
|||||||
return new BezugsberechtigungUeberbringerType();
|
return new BezugsberechtigungUeberbringerType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create an instance of {@link BezugsberechtigungNamentlich }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() {
|
|
||||||
return new BezugsberechtigungNamentlich();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link BezugsberechtigungVersicherungsnehmerType }
|
* 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() {
|
public EinwilligungType createEinwilligungType() {
|
||||||
return new ZustimmungGesundheitsdatenType();
|
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();
|
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 >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}}
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -8,10 +8,8 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.rs.ProduktRechtsschutzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.ProduktSachPrivatType;
|
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"
|
"beschreibungTxt"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
ProduktUnfallType.class,
|
|
||||||
ProduktMitVpType.class,
|
|
||||||
ProduktSachPrivatType.class,
|
ProduktSachPrivatType.class,
|
||||||
ProduktRechtsschutzType.class,
|
ProduktRechtsschutzType.class,
|
||||||
ProduktLebenType.class
|
ProduktMitVpType.class
|
||||||
})
|
})
|
||||||
public abstract class ProduktGenerischType
|
public abstract class ProduktGenerischType
|
||||||
extends ProduktType
|
extends ProduktType
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.ZusatzproduktKfzType;
|
|||||||
* <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
|
* <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
|
||||||
* <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
|
* <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
|
||||||
* <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/>
|
* <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/>
|
||||||
|
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
* <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
@@ -47,6 +48,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.ZusatzproduktKfzType;
|
|||||||
"zahlweg",
|
"zahlweg",
|
||||||
"zahlrhythmus",
|
"zahlrhythmus",
|
||||||
"hauptfaelligkeit",
|
"hauptfaelligkeit",
|
||||||
|
"refSicherstellungLfnr",
|
||||||
"zusaetzlicheProduktdaten"
|
"zusaetzlicheProduktdaten"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
@@ -70,6 +72,9 @@ public abstract class ProduktType
|
|||||||
@XmlElement(name = "Hauptfaelligkeit", required = true)
|
@XmlElement(name = "Hauptfaelligkeit", required = true)
|
||||||
@XmlSchemaType(name = "gMonthDay")
|
@XmlSchemaType(name = "gMonthDay")
|
||||||
protected XMLGregorianCalendar hauptfaelligkeit;
|
protected XMLGregorianCalendar hauptfaelligkeit;
|
||||||
|
@XmlElement(name = "RefSicherstellungLfnr")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer refSicherstellungLfnr;
|
||||||
@XmlElement(name = "ZusaetzlicheProduktdaten")
|
@XmlElement(name = "ZusaetzlicheProduktdaten")
|
||||||
protected List<ZusaetzlicheProduktdatenType> zusaetzlicheProduktdaten;
|
protected List<ZusaetzlicheProduktdatenType> zusaetzlicheProduktdaten;
|
||||||
|
|
||||||
@@ -193,6 +198,30 @@ public abstract class ProduktType
|
|||||||
this.hauptfaelligkeit = value;
|
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.
|
* Gets the value of the zusaetzlicheProduktdaten property.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -8,9 +8,8 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.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.rs.SpezAntragRechtsschutzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.AntragSachPrivatType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.AntragSachPrivatType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezAntragUnfallType;
|
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
|
|||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragBasis_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragBasis_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Bezugsberechtigungen" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* <element name="ZustimmungGesundheitsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZustimmungGesundheitsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="Einwilligung" type="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -41,9 +39,8 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezAntragUnfallType
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "SpezAntrag_Type", propOrder = {
|
@XmlType(name = "SpezAntrag_Type", propOrder = {
|
||||||
"bezugsberechtigungen",
|
|
||||||
"sicherstellungen",
|
"sicherstellungen",
|
||||||
"zustimmungGesundheitsdaten"
|
"einwilligung"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
SpezAntragUnfallType.class,
|
SpezAntragUnfallType.class,
|
||||||
@@ -55,41 +52,10 @@ public abstract class SpezAntragType
|
|||||||
extends SpezAntragBasisType
|
extends SpezAntragBasisType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Bezugsberechtigungen")
|
|
||||||
protected List<BezugsberechtigungType> bezugsberechtigungen;
|
|
||||||
@XmlElement(name = "Sicherstellungen")
|
@XmlElement(name = "Sicherstellungen")
|
||||||
protected List<SicherstellungType> sicherstellungen;
|
protected List<SicherstellungType> sicherstellungen;
|
||||||
@XmlElement(name = "ZustimmungGesundheitsdaten")
|
@XmlElement(name = "Einwilligung")
|
||||||
protected List<ZustimmungGesundheitsdatenType> zustimmungGesundheitsdaten;
|
protected List<EinwilligungType> einwilligung;
|
||||||
|
|
||||||
/**
|
|
||||||
* 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;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the sicherstellungen property.
|
* 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>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the JAXB object.
|
* 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>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getZustimmungGesundheitsdaten().add(newItem);
|
* getEinwilligung().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link ZustimmungGesundheitsdatenType }
|
* {@link EinwilligungType }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<ZustimmungGesundheitsdatenType> getZustimmungGesundheitsdaten() {
|
public List<EinwilligungType> getEinwilligung() {
|
||||||
if (zustimmungGesundheitsdaten == null) {
|
if (einwilligung == null) {
|
||||||
zustimmungGesundheitsdaten = new ArrayList<ZustimmungGesundheitsdatenType>();
|
einwilligung = new ArrayList<EinwilligungType>();
|
||||||
}
|
}
|
||||||
return this.zustimmungGesundheitsdaten;
|
return this.einwilligung;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -121,14 +121,6 @@ public class ObjectFactory {
|
|||||||
return new ProduktLebenType();
|
return new ProduktLebenType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create an instance of {@link ZusatzproduktLebenType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ZusatzproduktLebenType createZusatzproduktLebenType() {
|
|
||||||
return new ZusatzproduktLebenType();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link TarifLebenType }
|
* Create an instance of {@link TarifLebenType }
|
||||||
*
|
*
|
||||||
@@ -185,6 +177,14 @@ public class ObjectFactory {
|
|||||||
return new ZusatzversicherungUnfallinvaliditaetType();
|
return new ZusatzversicherungUnfallinvaliditaetType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZusatzproduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZusatzproduktLebenType createZusatzproduktLebenType() {
|
||||||
|
return new ZusatzproduktLebenType();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link RentenoptionType }
|
* Create an instance of {@link RentenoptionType }
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -6,9 +6,8 @@ import java.util.List;
|
|||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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>
|
* <pre>
|
||||||
* <complexType name="ProduktLeben_Type">
|
* <complexType name="ProduktLeben_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded"/>
|
|
||||||
* <element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -36,51 +33,14 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktGenerischType;
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "ProduktLeben_Type", propOrder = {
|
@XmlType(name = "ProduktLeben_Type", propOrder = {
|
||||||
"versPersonenRefLfnr",
|
"tarife"
|
||||||
"tarife",
|
|
||||||
"refSicherstellungLfnr"
|
|
||||||
})
|
})
|
||||||
public class ProduktLebenType
|
public class ProduktLebenType
|
||||||
extends ProduktGenerischType
|
extends ProduktMitVpType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "VersPersonenRefLfnr", type = Integer.class)
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected List<Integer> versPersonenRefLfnr;
|
|
||||||
@XmlElement(name = "Tarife")
|
@XmlElement(name = "Tarife")
|
||||||
protected List<TarifLebenType> 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.
|
* Gets the value of the tarife property.
|
||||||
@@ -111,28 +71,4 @@ public class ProduktLebenType
|
|||||||
return this.tarife;
|
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.ElementarproduktGenerischType;
|
|||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
|
* <element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type"/>
|
||||||
* <element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/>
|
* <element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/>
|
||||||
* <element name="RefSicherstellungLfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
||||||
* <element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMultiEnum_Type" minOccurs="0"/>
|
* <element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMultiEnum_Type" minOccurs="0"/>
|
||||||
* <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* <element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
@@ -42,7 +41,6 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.ElementarproduktGenerischType;
|
|||||||
@XmlType(name = "TarifLeben_Type", propOrder = {
|
@XmlType(name = "TarifLeben_Type", propOrder = {
|
||||||
"garantierteAblebenssumme",
|
"garantierteAblebenssumme",
|
||||||
"rentenoption",
|
"rentenoption",
|
||||||
"refSicherstellungLfdNr",
|
|
||||||
"fondsauswahl",
|
"fondsauswahl",
|
||||||
"versPersonenRefLfnr",
|
"versPersonenRefLfnr",
|
||||||
"zusatzbausteine"
|
"zusatzbausteine"
|
||||||
@@ -55,9 +53,6 @@ public class TarifLebenType
|
|||||||
protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme;
|
protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme;
|
||||||
@XmlElement(name = "Rentenoption")
|
@XmlElement(name = "Rentenoption")
|
||||||
protected RentenoptionType rentenoption;
|
protected RentenoptionType rentenoption;
|
||||||
@XmlElement(name = "RefSicherstellungLfdNr")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected Integer refSicherstellungLfdNr;
|
|
||||||
@XmlElement(name = "Fondsauswahl")
|
@XmlElement(name = "Fondsauswahl")
|
||||||
protected AttributMultiEnumType fondsauswahl;
|
protected AttributMultiEnumType fondsauswahl;
|
||||||
@XmlElement(name = "VersPersonenRefLfnr", type = Integer.class)
|
@XmlElement(name = "VersPersonenRefLfnr", type = Integer.class)
|
||||||
@@ -114,30 +109,6 @@ public class TarifLebenType
|
|||||||
this.rentenoption = value;
|
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.
|
* Ruft den Wert der fondsauswahl-Eigenschaft ab.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -48,8 +48,8 @@ public class ZusatzversicherungUnfallinvaliditaetType
|
|||||||
* <p>
|
* <p>
|
||||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
* 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 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 959 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd
|
||||||
* <p>
|
* <p>
|
||||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||||
|
|||||||
@@ -48,8 +48,8 @@ public class ZusatzversicherungUnfalltodType
|
|||||||
* <p>
|
* <p>
|
||||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
* 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 125 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 959 von file:/C:/Users/Jens/git/omds_unfall_leben/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd
|
||||||
* <p>
|
* <p>
|
||||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||||
|
|||||||
@@ -6,9 +6,8 @@ import java.util.List;
|
|||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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;
|
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>
|
* <pre>
|
||||||
* <complexType name="ProduktUnfall_Type">
|
* <complexType name="ProduktUnfall_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded"/>
|
|
||||||
* <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
||||||
* <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
|
* <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
@@ -38,55 +35,18 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "ProduktUnfall_Type", propOrder = {
|
@XmlType(name = "ProduktUnfall_Type", propOrder = {
|
||||||
"versPersonenRefLfnr",
|
|
||||||
"leistungsarten",
|
"leistungsarten",
|
||||||
"refSicherstellungLfnr",
|
|
||||||
"selbstbehalt"
|
"selbstbehalt"
|
||||||
})
|
})
|
||||||
public class ProduktUnfallType
|
public class ProduktUnfallType
|
||||||
extends ProduktGenerischType
|
extends ProduktMitVpType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "VersPersonenRefLfnr", type = Integer.class)
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected List<Integer> versPersonenRefLfnr;
|
|
||||||
@XmlElement(name = "Leistungsarten")
|
@XmlElement(name = "Leistungsarten")
|
||||||
protected List<LeistungsartUnfallType> leistungsarten;
|
protected List<LeistungsartUnfallType> leistungsarten;
|
||||||
@XmlElement(name = "RefSicherstellungLfnr")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected Integer refSicherstellungLfnr;
|
|
||||||
@XmlElement(name = "Selbstbehalt")
|
@XmlElement(name = "Selbstbehalt")
|
||||||
protected SelbstbehaltType 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.
|
* Gets the value of the leistungsarten property.
|
||||||
*
|
*
|
||||||
@@ -116,30 +76,6 @@ public class ProduktUnfallType
|
|||||||
return this.leistungsarten;
|
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.
|
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
|
|||||||
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
protected ObjektIdType objektId;
|
protected ObjektIdType objektId;
|
||||||
@XmlElementRefs({
|
@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 = "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 = "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)
|
|
||||||
})
|
})
|
||||||
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
||||||
@XmlElement(name = "WirksamtkeitAb", required = true)
|
@XmlElement(name = "WirksamtkeitAb", required = true)
|
||||||
@@ -115,8 +115,8 @@ public class ChangeCommunicationObjectRequestType
|
|||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* 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 ELKommunikationType }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* 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
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* 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
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* 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
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* 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
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* 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
|
* Generated source version: 3.2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -1247,17 +1247,31 @@
|
|||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="Bezugsberechtigung_Type">
|
<xsd:extension base="Bezugsberechtigung_Type">
|
||||||
<xsd:sequence>
|
<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:element name="Unwiderruflich" type="xsd:boolean">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>wahr, wenn das Bezugsrecht unwiderruflich ist.</xsd:documentation>
|
<xsd:documentation>wahr, wenn das Bezugsrecht unwiderruflich ist.</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</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:sequence>
|
||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
@@ -1756,16 +1770,11 @@
|
|||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="VersichertePerson_Type">
|
<xsd:complexType name="VersichertePerson_Type">
|
||||||
<xsd:annotation>
|
<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:annotation>
|
||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">
|
<xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">
|
||||||
<xsd:sequence>
|
<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:choice minOccurs="0">
|
||||||
<xsd:element name="RisikoNatPerson" type="RisikoNatPerson_Type">
|
<xsd:element name="RisikoNatPerson" type="RisikoNatPerson_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
@@ -1934,45 +1943,6 @@
|
|||||||
</xsd:element>
|
</xsd:element>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</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:complexType name="KostenFixOderProzent_Type" final="#all">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert</xsd:documentation>
|
<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:element name="Vertragsnummer" type="xsd:string"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="ZustimmungGesundheitsdaten_Type">
|
<xsd:complexType name="Einwilligung_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Zustimmung Gesundheitsdaten</xsd:documentation>
|
<xsd:documentation>Abstrakter Typ für Einwilligung</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
|
<xsd:element name="Zustimmung" type="xsd:boolean" minOccurs="0">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Referenz auf die Person</xsd:documentation>
|
<xsd:documentation>Die Bestätigung der Zustimmung</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:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="Text" type="xsd:string" minOccurs="0">
|
<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:documentation>Optional der tatsächliche Text der Zustimmung</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="Zustimmung" type="xsd:boolean">
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="EinwilligungPersDaten_Type">
|
||||||
<xsd:annotation>
|
<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:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
</xsd:sequence>
|
</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>
|
||||||
<xsd:complexType name="FATCA_Type">
|
<xsd:complexType name="FATCA_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
@@ -2645,7 +2645,7 @@
|
|||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:choice>
|
<xsd:choice>
|
||||||
<xsd:element name="FATCA_NatPerson" type="FATCA_NatPersonType"/>
|
<xsd:element name="FATCA_NatPerson" type="FATCA_NatPersonType"/>
|
||||||
<xsd:element name="FATCA_SonstPerson" type="FATCA_SonstPersonType" />
|
<xsd:element name="FATCA_SonstPerson" type="FATCA_SonstPersonType"/>
|
||||||
</xsd:choice>
|
</xsd:choice>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="FATCA_NatPersonType">
|
<xsd:complexType name="FATCA_NatPersonType">
|
||||||
@@ -2656,7 +2656,7 @@
|
|||||||
<xsd:element name="Geburtsland" type="AttributEnum_Type"/>
|
<xsd:element name="Geburtsland" type="AttributEnum_Type"/>
|
||||||
<xsd:element name="US_Indizien" type="xsd:boolean"/>
|
<xsd:element name="US_Indizien" type="xsd:boolean"/>
|
||||||
<xsd:element name="US_Steuerpflicht" 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:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="FATCA_SonstPersonType">
|
<xsd:complexType name="FATCA_SonstPersonType">
|
||||||
@@ -2665,7 +2665,7 @@
|
|||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="LandFirmensitz" type="AttributEnum_Type"/>
|
<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:element name="KonzessionFinanzen" type="xsd:boolean">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Konzession nach BWG, VAG, WAG, PKG, BMSVG, ZaDiG oder vergleichbare Konzession nach ausländischem Recht</xsd:documentation>
|
<xsd:documentation>Konzession nach BWG, VAG, WAG, PKG, BMSVG, ZaDiG oder vergleichbare Konzession nach ausländischem Recht</xsd:documentation>
|
||||||
|
|||||||
@@ -130,7 +130,6 @@
|
|||||||
<xsd:documentation>Daten zu etwaigen Sicherstellungen</xsd:documentation>
|
<xsd:documentation>Daten zu etwaigen Sicherstellungen</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="ZustimmungGesundheitsdaten" type="cst:ZustimmungGesundheitsdaten_Type" minOccurs="0" maxOccurs="unbounded"/>
|
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
|
|||||||
@@ -802,6 +802,7 @@
|
|||||||
<xsd:element name="Zahlweg" type="omds:ZahlWegCd_Type" minOccurs="0"/>
|
<xsd:element name="Zahlweg" type="omds:ZahlWegCd_Type" minOccurs="0"/>
|
||||||
<xsd:element name="Zahlrhythmus" type="omds:ZahlRhythmCd_Type" minOccurs="0"/>
|
<xsd:element name="Zahlrhythmus" type="omds:ZahlRhythmCd_Type" minOccurs="0"/>
|
||||||
<xsd:element name="Hauptfaelligkeit" type="Hauptfaelligkeit_Type"/>
|
<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:element name="ZusaetzlicheProduktdaten" type="ZusaetzlicheProduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
@@ -815,6 +816,7 @@
|
|||||||
<xsd:extension base="Produktbaustein_Type">
|
<xsd:extension base="Produktbaustein_Type">
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="VtgBeg" type="omds:Datum" minOccurs="0"/>
|
<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:element name="ZusaetzlicheElementarproduktdaten" type="ZusaetzlicheElementarproduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
@@ -895,16 +897,6 @@
|
|||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
</xsd:complexType>
|
</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:complexType name="ElementarproduktGenerisch_Type" abstract="true">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Basistyp für ein Elementarprodukt, 2. Generation</xsd:documentation>
|
<xsd:documentation>Basistyp für ein Elementarprodukt, 2. Generation</xsd:documentation>
|
||||||
@@ -969,6 +961,23 @@
|
|||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
</xsd:complexType>
|
</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:complexType name="BeteiligtePersonVertrag_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind</xsd:documentation>
|
<xsd:documentation>Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind</xsd:documentation>
|
||||||
@@ -1274,11 +1283,6 @@
|
|||||||
</xsd:restriction>
|
</xsd:restriction>
|
||||||
</xsd:simpleType>
|
</xsd:simpleType>
|
||||||
</xsd:element>
|
</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:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="BezugsberechtigungGesetzlicheErben_Type">
|
<xsd:complexType name="BezugsberechtigungGesetzlicheErben_Type">
|
||||||
@@ -1312,18 +1316,32 @@
|
|||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="Bezugsberechtigung_Type">
|
<xsd:extension base="Bezugsberechtigung_Type">
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="Prozentsatz" type="xsd:double" minOccurs="0"/>
|
|
||||||
<xsd:element name="Unwiderruflich" type="xsd:boolean">
|
<xsd:element name="Unwiderruflich" type="xsd:boolean">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>wahr, wenn das Bezugsrecht unwiderruflich ist.</xsd:documentation>
|
<xsd:documentation>wahr, wenn das Bezugsrecht unwiderruflich ist.</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</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:element name="Zugunsten" type="xsd:unsignedShort">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Referenz auf die Person, zu deren Gunsten das Betzugsrecht festgelegt ist</xsd:documentation>
|
<xsd:documentation>Referenz auf die Person, zu deren Gunsten das Betzugsrecht festgelegt ist</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:sequence>
|
||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
@@ -1626,59 +1644,6 @@
|
|||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:union memberTypes="omds:AendGrundCd_Type xsd:string"/>
|
<xsd:union memberTypes="omds:AendGrundCd_Type xsd:string"/>
|
||||||
</xsd:simpleType>
|
</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:complexType name="DokumentInfo_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Typ mit Informationen zu einem Dokument (kann auch das Dokument selbst enthalten)</xsd:documentation>
|
<xsd:documentation>Typ mit Informationen zu einem Dokument (kann auch das Dokument selbst enthalten)</xsd:documentation>
|
||||||
@@ -2047,45 +2012,45 @@
|
|||||||
</xsd:element>
|
</xsd:element>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="VersicherterBetrieb_Type">
|
<!-- <xsd:complexType name="VersicherterBetrieb_Type">-->
|
||||||
<xsd:annotation>
|
<!-- <xsd:annotation>-->
|
||||||
<xsd:documentation>Versicherter Betrieb (Landwirtschaftlicher Betrieb, Verein)</xsd:documentation>
|
<!-- <xsd:documentation>Versicherter Betrieb (Landwirtschaftlicher Betrieb, Verein)</xsd:documentation>-->
|
||||||
</xsd:annotation>
|
<!-- </xsd:annotation>-->
|
||||||
<xsd:complexContent>
|
<!-- <xsd:complexContent>-->
|
||||||
<xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">
|
<!-- <xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">-->
|
||||||
<xsd:sequence>
|
<!-- <xsd:sequence>-->
|
||||||
<xsd:element ref="ObjektId" minOccurs="0"/>
|
<!-- <xsd:element ref="ObjektId" minOccurs="0"/>-->
|
||||||
<xsd:element name="Adresse" type="omds:ADRESSE_Type"/>
|
<!-- <xsd:element name="Adresse" type="omds:ADRESSE_Type"/>-->
|
||||||
<xsd:element name="Betriebsart" type="xsd:string" maxOccurs="unbounded"/>
|
<!-- <xsd:element name="Betriebsart" type="xsd:string" maxOccurs="unbounded"/>-->
|
||||||
<xsd:element name="Mitarbeiteranzahl" type="xsd:unsignedInt"/>
|
<!-- <xsd:element name="Mitarbeiteranzahl" type="xsd:unsignedInt"/>-->
|
||||||
<xsd:element name="Umsatz" type="xsd:unsignedLong"/>
|
<!-- <xsd:element name="Umsatz" type="xsd:unsignedLong"/>-->
|
||||||
<xsd:element name="FlaecheInHektar" type="xsd:unsignedShort" minOccurs="0"/>
|
<!-- <xsd:element name="FlaecheInHektar" type="xsd:unsignedShort" minOccurs="0"/>-->
|
||||||
<xsd:element name="Mitgliederanzahl" type="xsd:unsignedInt" minOccurs="0"/>
|
<!-- <xsd:element name="Mitgliederanzahl" type="xsd:unsignedInt" minOccurs="0"/>-->
|
||||||
<xsd:element name="ZusaetzlicheBetriebsdaten" type="ZusaetzlicheBetriebsdaten_Type" minOccurs="0" maxOccurs="unbounded"/>
|
<!-- <xsd:element name="ZusaetzlicheBetriebsdaten" type="ZusaetzlicheBetriebsdaten_Type" minOccurs="0" maxOccurs="unbounded"/>-->
|
||||||
</xsd:sequence>
|
<!-- </xsd:sequence>-->
|
||||||
</xsd:extension>
|
<!-- </xsd:extension>-->
|
||||||
</xsd:complexContent>
|
<!-- </xsd:complexContent>-->
|
||||||
</xsd:complexType>
|
<!-- </xsd:complexType>-->
|
||||||
<xsd:complexType name="ZusaetzlicheBetriebsdaten_Type" abstract="true">
|
<!-- <xsd:complexType name="ZusaetzlicheBetriebsdaten_Type" abstract="true">-->
|
||||||
<xsd:annotation>
|
<!-- <xsd:annotation>-->
|
||||||
<xsd:documentation>Abstrakter Typ fuer zusaetzliche Betriebsdaten zur Erweiterung des VersicherterBetrieb_Type</xsd:documentation>
|
<!-- <xsd:documentation>Abstrakter Typ fuer zusaetzliche Betriebsdaten zur Erweiterung des VersicherterBetrieb_Type</xsd:documentation>-->
|
||||||
</xsd:annotation>
|
<!-- </xsd:annotation>-->
|
||||||
</xsd:complexType>
|
<!-- </xsd:complexType>-->
|
||||||
<xsd:complexType name="VersicherteLiegenschaft_Type">
|
<!-- <xsd:complexType name="VersicherteLiegenschaft_Type">-->
|
||||||
<xsd:annotation>
|
<!-- <xsd:annotation>-->
|
||||||
<xsd:documentation>Versicherte Liegenschaft</xsd:documentation>
|
<!-- <xsd:documentation>Versicherte Liegenschaft</xsd:documentation>-->
|
||||||
</xsd:annotation>
|
<!-- </xsd:annotation>-->
|
||||||
<xsd:complexContent>
|
<!-- <xsd:complexContent>-->
|
||||||
<xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">
|
<!-- <xsd:extension base="VersichertesInteresseMitAttributMetadaten_Type">-->
|
||||||
<xsd:sequence>
|
<!-- <xsd:sequence>-->
|
||||||
<xsd:element ref="ObjektId"/>
|
<!-- <xsd:element ref="ObjektId"/>-->
|
||||||
<xsd:element name="Adresse" type="omds:ADRESSE_Type"/>
|
<!-- <xsd:element name="Adresse" type="omds:ADRESSE_Type"/>-->
|
||||||
<xsd:element name="BebauteFlaecheInQm" type="xsd:unsignedShort"/>
|
<!-- <xsd:element name="BebauteFlaecheInQm" type="xsd:unsignedShort"/>-->
|
||||||
<xsd:element name="UeberdachteFlaecheInQm" type="xsd:unsignedShort"/>
|
<!-- <xsd:element name="UeberdachteFlaecheInQm" type="xsd:unsignedShort"/>-->
|
||||||
</xsd:sequence>
|
<!-- </xsd:sequence>-->
|
||||||
</xsd:extension>
|
<!-- </xsd:extension>-->
|
||||||
</xsd:complexContent>
|
<!-- </xsd:complexContent>-->
|
||||||
</xsd:complexType>
|
<!-- </xsd:complexType>-->
|
||||||
<xsd:complexType name="KostenFixOderProzent_Type" final="#all">
|
<xsd:complexType name="KostenFixOderProzent_Type" final="#all">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert</xsd:documentation>
|
<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:element name="Vertragsnummer" type="xsd:string"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="ZustimmungGesundheitsdaten_Type">
|
<xsd:complexType name="Einwilligung_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Zustimmung Gesundheitsdaten</xsd:documentation>
|
<xsd:documentation>Abstrakter Typ für Einwilligung</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
|
<xsd:element name="Zustimmung" type="xsd:boolean" minOccurs="0">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Referenz auf die Person</xsd:documentation>
|
<xsd:documentation>Die Bestätigung der Zustimmung</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:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="Text" type="xsd:string" minOccurs="0">
|
<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:documentation>Optional der tatsächliche Text der Zustimmung</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="Zustimmung" type="xsd:boolean">
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="EinwilligungPersDaten_Type">
|
||||||
<xsd:annotation>
|
<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:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
</xsd:sequence>
|
</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>
|
||||||
<xsd:complexType name="FATCA_Type">
|
<xsd:complexType name="FATCA_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
|
|||||||
@@ -124,13 +124,16 @@
|
|||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="SpezAntragBasis_Type">
|
<xsd:extension base="SpezAntragBasis_Type">
|
||||||
<xsd:sequence>
|
<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:element name="Sicherstellungen" type="cst:Sicherstellung_Type" minOccurs="0" maxOccurs="unbounded">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Daten zu etwaigen Sicherstellungen</xsd:documentation>
|
<xsd:documentation>Daten zu etwaigen Sicherstellungen</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</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:sequence>
|
||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
|
|||||||
@@ -31,28 +31,17 @@
|
|||||||
<xsd:documentation>Typ für ein Produkt in der Sparte Leben.</xsd:documentation>
|
<xsd:documentation>Typ für ein Produkt in der Sparte Leben.</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="cst:ProduktGenerisch_Type">
|
<xsd:extension base="cst:ProduktMitVp_Type">
|
||||||
<xsd:sequence>
|
<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:element name="Tarife" type="TarifLeben_Type" minOccurs="0" maxOccurs="unbounded">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Liste der Tarife</xsd:documentation>
|
<xsd:documentation>Liste der Tarife</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="RefSicherstellungLfnr" type="xsd:unsignedShort" minOccurs="0"/>
|
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
</xsd:complexType>
|
</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:complexType name="TarifLeben_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Typ für ein Elementarprodukt in der Sparte Leben.</xsd:documentation>
|
<xsd:documentation>Typ für ein Elementarprodukt in der Sparte Leben.</xsd:documentation>
|
||||||
@@ -62,7 +51,6 @@
|
|||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="GarantierteAblebenssumme" type="VersicherungssummeZusatzbaustein_Type"/>
|
<xsd:element name="GarantierteAblebenssumme" type="VersicherungssummeZusatzbaustein_Type"/>
|
||||||
<xsd:element name="Rentenoption" type="Rentenoption_Type" minOccurs="0"/>
|
<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:element name="Fondsauswahl" type="cst:AttributMultiEnum_Type" minOccurs="0">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Bei fondsgebundenen Produkten die Vorgabe der gewünschten Fonds.</xsd:documentation>
|
<xsd:documentation>Bei fondsgebundenen Produkten die Vorgabe der gewünschten Fonds.</xsd:documentation>
|
||||||
@@ -151,6 +139,11 @@
|
|||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
</xsd:complexType>
|
</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:complexType name="Rentenoption_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Vorgefertigter Typ für eine Rentenoption</xsd:documentation>
|
<xsd:documentation>Vorgefertigter Typ für eine Rentenoption</xsd:documentation>
|
||||||
|
|||||||
@@ -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: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:annotation>
|
||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="cst:ProduktGenerisch_Type">
|
<xsd:extension base="cst:ProduktMitVp_Type">
|
||||||
<xsd:sequence>
|
<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:element name="Leistungsarten" type="LeistungsartUnfall_Type" minOccurs="0" maxOccurs="unbounded">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Liste der Elementarprodukte</xsd:documentation>
|
<xsd:documentation>Liste der Elementarprodukte</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="RefSicherstellungLfnr" type="xsd:unsignedShort" minOccurs="0"/>
|
|
||||||
<xsd:element name="Selbstbehalt" type="cst:Selbstbehalt_Type" minOccurs="0">
|
<xsd:element name="Selbstbehalt" type="cst:Selbstbehalt_Type" minOccurs="0">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Selbstbehalt über alle Elementarprodukte einheitlich.</xsd:documentation>
|
<xsd:documentation>Selbstbehalt über alle Elementarprodukte einheitlich.</xsd:documentation>
|
||||||
|
|||||||
Reference in New Issue
Block a user