Anpassungen Unfall nach Fachausschuss Unfall:
- Versicherte Person referenziert eine Person (ähnlich anderen Sparten) - Bezugsrecht eigenes Objekt - Keine Darstellung der Prämien nach Leistungsarten
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Bezugsberechtigung gesetzliche Erben
|
||||
*
|
||||
* <p>Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BezugsberechtigungGesetzlicheErben_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type")
|
||||
public class BezugsberechtigungGesetzlicheErbenType
|
||||
extends BezugsberechtigungType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Bezugsberechtigung Individuell
|
||||
*
|
||||
* <p>Java-Klasse für BezugsberechtigungIndividuell complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BezugsberechtigungIndividuell">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||
* <sequence>
|
||||
* <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BezugsberechtigungIndividuell", propOrder = {
|
||||
"beschreibung"
|
||||
})
|
||||
public class BezugsberechtigungIndividuell
|
||||
extends BezugsberechtigungType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Beschreibung", required = true)
|
||||
protected String beschreibung;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der beschreibung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBeschreibung() {
|
||||
return beschreibung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der beschreibung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBeschreibung(String value) {
|
||||
this.beschreibung = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Bezugsberechtigung namentlich
|
||||
*
|
||||
* <p>Java-Klasse für BezugsberechtigungNamentlich complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BezugsberechtigungNamentlich">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||
* <sequence>
|
||||
* <element name="ReferenzPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BezugsberechtigungNamentlich", propOrder = {
|
||||
"referenzPerson"
|
||||
})
|
||||
public class BezugsberechtigungNamentlich
|
||||
extends BezugsberechtigungType
|
||||
{
|
||||
|
||||
@XmlElement(name = "ReferenzPerson")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected int referenzPerson;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der referenzPerson-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getReferenzPerson() {
|
||||
return referenzPerson;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der referenzPerson-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setReferenzPerson(int value) {
|
||||
this.referenzPerson = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell
|
||||
*
|
||||
* <p>Java-Klasse für Bezugsberechtigung_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Bezugsberechtigung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Bezugsberechtigung_Type")
|
||||
@XmlSeeAlso({
|
||||
BezugsberechtigungGesetzlicheErbenType.class,
|
||||
BezugsberechtigungUeberbringerType.class,
|
||||
BezugsberechtigungNamentlich.class,
|
||||
BezugsberechtigungIndividuell.class
|
||||
})
|
||||
public abstract class BezugsberechtigungType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Bezugsberechtigung Überbringer
|
||||
*
|
||||
* <p>Java-Klasse für BezugsberechtigungUeberbringer_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BezugsberechtigungUeberbringer_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BezugsberechtigungUeberbringer_Type")
|
||||
public class BezugsberechtigungUeberbringerType
|
||||
extends BezugsberechtigungType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds2Types.v2_11.PERSONType;
|
||||
|
||||
|
||||
/**
|
||||
* Type Bezugsrecht
|
||||
* Type Bezugsrecht fuer Kfz
|
||||
*
|
||||
* <p>Java-Klasse für Bezugsrecht_Type complex type.
|
||||
*
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.common;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
@@ -29,6 +30,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.LeistungsartUnfallTy
|
||||
* <element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Versicherungssumme" type="{urn:omds20}decimal14_2" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
@@ -42,7 +44,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.LeistungsartUnfallTy
|
||||
"eingeschlossen",
|
||||
"einschlussAenderbar",
|
||||
"attributMetadaten",
|
||||
"beschreibungTxt"
|
||||
"beschreibungTxt",
|
||||
"versicherungssumme"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
ElementarproduktRechtsschutzType.class,
|
||||
@@ -61,6 +64,8 @@ public abstract class ElementarproduktGenerischType
|
||||
protected List<AttributMetadatenType> attributMetadaten;
|
||||
@XmlElement(name = "BeschreibungTxt")
|
||||
protected String beschreibungTxt;
|
||||
@XmlElement(name = "Versicherungssumme")
|
||||
protected BigDecimal versicherungssumme;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der eingeschlossen-Eigenschaft ab.
|
||||
@@ -155,4 +160,28 @@ public abstract class ElementarproduktGenerischType
|
||||
this.beschreibungTxt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getVersicherungssumme() {
|
||||
return versicherungssumme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungssumme-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setVersicherungssumme(BigDecimal value) {
|
||||
this.versicherungssumme = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -165,6 +165,14 @@ public class ObjectFactory {
|
||||
return new VinkulierungType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VinkularglaeubigerType }
|
||||
*
|
||||
*/
|
||||
public VinkularglaeubigerType createVinkularglaeubigerType() {
|
||||
return new VinkularglaeubigerType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BezugsrechtType }
|
||||
*
|
||||
@@ -174,11 +182,35 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VinkularglaeubigerType }
|
||||
* Create an instance of {@link BezugsberechtigungGesetzlicheErbenType }
|
||||
*
|
||||
*/
|
||||
public VinkularglaeubigerType createVinkularglaeubigerType() {
|
||||
return new VinkularglaeubigerType();
|
||||
public BezugsberechtigungGesetzlicheErbenType createBezugsberechtigungGesetzlicheErbenType() {
|
||||
return new BezugsberechtigungGesetzlicheErbenType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BezugsberechtigungUeberbringerType }
|
||||
*
|
||||
*/
|
||||
public BezugsberechtigungUeberbringerType createBezugsberechtigungUeberbringerType() {
|
||||
return new BezugsberechtigungUeberbringerType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BezugsberechtigungNamentlich }
|
||||
*
|
||||
*/
|
||||
public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() {
|
||||
return new BezugsberechtigungNamentlich();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BezugsberechtigungIndividuell }
|
||||
*
|
||||
*/
|
||||
public BezugsberechtigungIndividuell createBezugsberechtigungIndividuell() {
|
||||
return new BezugsberechtigungIndividuell();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CalculateResponseGen
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Responseobjekts für eine Rechtsschutz-Berechnung
|
||||
* Typ des Responseobjekt bei der Rechtsschutz-Berechnung
|
||||
*
|
||||
* <p>Java-Klasse für CalculateRechtsschutzResponse_Type complex type.
|
||||
*
|
||||
|
||||
@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationRes
|
||||
|
||||
|
||||
/**
|
||||
* Type des Responseobjekts für die Erstellung eines Rechtsschutzantrags
|
||||
* Type des Responseobjekts bei der Erstellung eines Rechtsschutzantrags
|
||||
*
|
||||
* <p>Java-Klasse für CreateApplicationRechtsschutzResponse_Type complex type.
|
||||
*
|
||||
|
||||
@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferResponseG
|
||||
|
||||
|
||||
/**
|
||||
* Type des Responseobjekts für eine Erstellung eines Rechtsschutz-Offerts
|
||||
* Type des Responseobjekts bei der Erstellung eines Rechtsschutz-Offerts
|
||||
*
|
||||
* <p>Java-Klasse für CreateOfferRechtsschutzResponse_Type complex type.
|
||||
*
|
||||
|
||||
@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationRes
|
||||
|
||||
|
||||
/**
|
||||
* Type des Response, um den Antrag einzureichen
|
||||
* Type des Response beim Eineichen des Antrags
|
||||
*
|
||||
* <p>Java-Klasse für SubmitApplicationRechtsschutzResponse_Type complex type.
|
||||
*
|
||||
|
||||
@@ -2,10 +2,13 @@
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.JAXBElement;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlElementRef;
|
||||
import javax.xml.bind.annotation.XmlElementRefs;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.KostenFixOderProzentType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
@@ -40,257 +43,70 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = {
|
||||
"sparte",
|
||||
"pauschalbetrag",
|
||||
"selbstbehalt",
|
||||
"versicherungssumme",
|
||||
"unterversicherungsverzicht",
|
||||
"prozentVersicherungssumme",
|
||||
"nebenkosten",
|
||||
"vorsorge",
|
||||
"hoechsthaftungssumme"
|
||||
"rest"
|
||||
})
|
||||
public class GenElementarproduktGebaeudeType
|
||||
extends ElementarproduktGebaeudeType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Sparte", required = true)
|
||||
protected String sparte;
|
||||
@XmlElement(name = "Pauschalbetrag")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger pauschalbetrag;
|
||||
@XmlElement(name = "Selbstbehalt")
|
||||
protected SelbstbehaltType selbstbehalt;
|
||||
@XmlElement(name = "Versicherungssumme")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger versicherungssumme;
|
||||
@XmlElement(name = "Unterversicherungsverzicht")
|
||||
protected Boolean unterversicherungsverzicht;
|
||||
@XmlElement(name = "ProzentVersicherungssumme")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long prozentVersicherungssumme;
|
||||
@XmlElement(name = "Nebenkosten")
|
||||
protected KostenFixOderProzentType nebenkosten;
|
||||
@XmlElement(name = "Vorsorge")
|
||||
protected KostenFixOderProzentType vorsorge;
|
||||
@XmlElement(name = "Hoechsthaftungssumme")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger hoechsthaftungssumme;
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
|
||||
})
|
||||
protected List<JAXBElement<?>> rest;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der sparte-Eigenschaft ab.
|
||||
* Ruft das restliche Contentmodell ab.
|
||||
*
|
||||
* <p>
|
||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
||||
* Zeile 298 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd
|
||||
* Zeile 891 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd
|
||||
* <p>
|
||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||
* Gets the value of the rest 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 rest property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRest().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link String }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link Long }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSparte() {
|
||||
return sparte;
|
||||
public List<JAXBElement<?>> getRest() {
|
||||
if (rest == null) {
|
||||
rest = new ArrayList<JAXBElement<?>>();
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der sparte-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSparte(String value) {
|
||||
this.sparte = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der pauschalbetrag-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getPauschalbetrag() {
|
||||
return pauschalbetrag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der pauschalbetrag-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setPauschalbetrag(BigInteger value) {
|
||||
this.pauschalbetrag = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SelbstbehaltType }
|
||||
*
|
||||
*/
|
||||
public SelbstbehaltType getSelbstbehalt() {
|
||||
return selbstbehalt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der selbstbehalt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SelbstbehaltType }
|
||||
*
|
||||
*/
|
||||
public void setSelbstbehalt(SelbstbehaltType value) {
|
||||
this.selbstbehalt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getVersicherungssumme() {
|
||||
return versicherungssumme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungssumme-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setVersicherungssumme(BigInteger value) {
|
||||
this.versicherungssumme = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isUnterversicherungsverzicht() {
|
||||
return unterversicherungsverzicht;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der unterversicherungsverzicht-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setUnterversicherungsverzicht(Boolean value) {
|
||||
this.unterversicherungsverzicht = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getProzentVersicherungssumme() {
|
||||
return prozentVersicherungssumme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der prozentVersicherungssumme-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setProzentVersicherungssumme(Long value) {
|
||||
this.prozentVersicherungssumme = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der nebenkosten-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link KostenFixOderProzentType }
|
||||
*
|
||||
*/
|
||||
public KostenFixOderProzentType getNebenkosten() {
|
||||
return nebenkosten;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der nebenkosten-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link KostenFixOderProzentType }
|
||||
*
|
||||
*/
|
||||
public void setNebenkosten(KostenFixOderProzentType value) {
|
||||
this.nebenkosten = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der vorsorge-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link KostenFixOderProzentType }
|
||||
*
|
||||
*/
|
||||
public KostenFixOderProzentType getVorsorge() {
|
||||
return vorsorge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der vorsorge-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link KostenFixOderProzentType }
|
||||
*
|
||||
*/
|
||||
public void setVorsorge(KostenFixOderProzentType value) {
|
||||
this.vorsorge = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getHoechsthaftungssumme() {
|
||||
return hoechsthaftungssumme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der hoechsthaftungssumme-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setHoechsthaftungssumme(BigInteger value) {
|
||||
this.hoechsthaftungssumme = value;
|
||||
return this.rest;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -2,10 +2,13 @@
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.JAXBElement;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlElementRef;
|
||||
import javax.xml.bind.annotation.XmlElementRefs;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.KostenFixOderProzentType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
@@ -40,257 +43,70 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = {
|
||||
"sparte",
|
||||
"versicherungssumme",
|
||||
"pauschalbetrag",
|
||||
"prozentVersicherungssumme",
|
||||
"selbstbehalt",
|
||||
"unterversicherungsverzicht",
|
||||
"nebenkosten",
|
||||
"vorsorge",
|
||||
"hoechsthaftungssumme"
|
||||
"rest"
|
||||
})
|
||||
public class GenElementarproduktHaushaltType
|
||||
extends ElementarproduktHaushaltType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Sparte", required = true)
|
||||
protected String sparte;
|
||||
@XmlElement(name = "Versicherungssumme")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger versicherungssumme;
|
||||
@XmlElement(name = "Pauschalbetrag")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger pauschalbetrag;
|
||||
@XmlElement(name = "ProzentVersicherungssumme")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long prozentVersicherungssumme;
|
||||
@XmlElement(name = "Selbstbehalt")
|
||||
protected SelbstbehaltType selbstbehalt;
|
||||
@XmlElement(name = "Unterversicherungsverzicht")
|
||||
protected Boolean unterversicherungsverzicht;
|
||||
@XmlElement(name = "Nebenkosten")
|
||||
protected KostenFixOderProzentType nebenkosten;
|
||||
@XmlElement(name = "Vorsorge")
|
||||
protected KostenFixOderProzentType vorsorge;
|
||||
@XmlElement(name = "Hoechsthaftungssumme")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger hoechsthaftungssumme;
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
|
||||
})
|
||||
protected List<JAXBElement<?>> rest;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der sparte-Eigenschaft ab.
|
||||
* Ruft das restliche Contentmodell ab.
|
||||
*
|
||||
* <p>
|
||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
||||
* Zeile 313 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd
|
||||
* Zeile 891 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd
|
||||
* <p>
|
||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||
* Gets the value of the rest 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 rest property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRest().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link String }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link Long }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSparte() {
|
||||
return sparte;
|
||||
public List<JAXBElement<?>> getRest() {
|
||||
if (rest == null) {
|
||||
rest = new ArrayList<JAXBElement<?>>();
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der sparte-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSparte(String value) {
|
||||
this.sparte = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getVersicherungssumme() {
|
||||
return versicherungssumme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungssumme-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setVersicherungssumme(BigInteger value) {
|
||||
this.versicherungssumme = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der pauschalbetrag-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getPauschalbetrag() {
|
||||
return pauschalbetrag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der pauschalbetrag-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setPauschalbetrag(BigInteger value) {
|
||||
this.pauschalbetrag = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getProzentVersicherungssumme() {
|
||||
return prozentVersicherungssumme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der prozentVersicherungssumme-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setProzentVersicherungssumme(Long value) {
|
||||
this.prozentVersicherungssumme = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SelbstbehaltType }
|
||||
*
|
||||
*/
|
||||
public SelbstbehaltType getSelbstbehalt() {
|
||||
return selbstbehalt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der selbstbehalt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SelbstbehaltType }
|
||||
*
|
||||
*/
|
||||
public void setSelbstbehalt(SelbstbehaltType value) {
|
||||
this.selbstbehalt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isUnterversicherungsverzicht() {
|
||||
return unterversicherungsverzicht;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der unterversicherungsverzicht-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setUnterversicherungsverzicht(Boolean value) {
|
||||
this.unterversicherungsverzicht = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der nebenkosten-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link KostenFixOderProzentType }
|
||||
*
|
||||
*/
|
||||
public KostenFixOderProzentType getNebenkosten() {
|
||||
return nebenkosten;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der nebenkosten-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link KostenFixOderProzentType }
|
||||
*
|
||||
*/
|
||||
public void setNebenkosten(KostenFixOderProzentType value) {
|
||||
this.nebenkosten = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der vorsorge-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link KostenFixOderProzentType }
|
||||
*
|
||||
*/
|
||||
public KostenFixOderProzentType getVorsorge() {
|
||||
return vorsorge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der vorsorge-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link KostenFixOderProzentType }
|
||||
*
|
||||
*/
|
||||
public void setVorsorge(KostenFixOderProzentType value) {
|
||||
this.vorsorge = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getHoechsthaftungssumme() {
|
||||
return hoechsthaftungssumme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der hoechsthaftungssumme-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setHoechsthaftungssumme(BigInteger value) {
|
||||
this.hoechsthaftungssumme = value;
|
||||
return this.rest;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,10 +1,13 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.bind.JAXBElement;
|
||||
import javax.xml.bind.annotation.XmlElementDecl;
|
||||
import javax.xml.bind.annotation.XmlRegistry;
|
||||
import javax.xml.namespace.QName;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.KostenFixOderProzentType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
|
||||
|
||||
/**
|
||||
@@ -34,6 +37,15 @@ public class ObjectFactory {
|
||||
private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse");
|
||||
private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest");
|
||||
private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse");
|
||||
private final static QName _GenElementarproduktHaushaltTypeSparte_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Sparte");
|
||||
private final static QName _GenElementarproduktHaushaltTypeVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Versicherungssumme");
|
||||
private final static QName _GenElementarproduktHaushaltTypePauschalbetrag_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Pauschalbetrag");
|
||||
private final static QName _GenElementarproduktHaushaltTypeProzentVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProzentVersicherungssumme");
|
||||
private final static QName _GenElementarproduktHaushaltTypeSelbstbehalt_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Selbstbehalt");
|
||||
private final static QName _GenElementarproduktHaushaltTypeUnterversicherungsverzicht_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Unterversicherungsverzicht");
|
||||
private final static QName _GenElementarproduktHaushaltTypeNebenkosten_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Nebenkosten");
|
||||
private final static QName _GenElementarproduktHaushaltTypeVorsorge_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Vorsorge");
|
||||
private final static QName _GenElementarproduktHaushaltTypeHoechsthaftungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Hoechsthaftungssumme");
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat
|
||||
@@ -332,4 +344,166 @@ public class ObjectFactory {
|
||||
return new JAXBElement<SubmitApplicationSachPrivatResponseType>(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Sparte", scope = GenElementarproduktHaushaltType.class)
|
||||
public JAXBElement<String> createGenElementarproduktHaushaltTypeSparte(String value) {
|
||||
return new JAXBElement<String>(_GenElementarproduktHaushaltTypeSparte_QNAME, String.class, GenElementarproduktHaushaltType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Versicherungssumme", scope = GenElementarproduktHaushaltType.class)
|
||||
public JAXBElement<BigInteger> createGenElementarproduktHaushaltTypeVersicherungssumme(BigInteger value) {
|
||||
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypeVersicherungssumme_QNAME, BigInteger.class, GenElementarproduktHaushaltType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Pauschalbetrag", scope = GenElementarproduktHaushaltType.class)
|
||||
public JAXBElement<BigInteger> createGenElementarproduktHaushaltTypePauschalbetrag(BigInteger value) {
|
||||
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypePauschalbetrag_QNAME, BigInteger.class, GenElementarproduktHaushaltType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProzentVersicherungssumme", scope = GenElementarproduktHaushaltType.class)
|
||||
public JAXBElement<Long> createGenElementarproduktHaushaltTypeProzentVersicherungssumme(Long value) {
|
||||
return new JAXBElement<Long>(_GenElementarproduktHaushaltTypeProzentVersicherungssumme_QNAME, Long.class, GenElementarproduktHaushaltType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Selbstbehalt", scope = GenElementarproduktHaushaltType.class)
|
||||
public JAXBElement<SelbstbehaltType> createGenElementarproduktHaushaltTypeSelbstbehalt(SelbstbehaltType value) {
|
||||
return new JAXBElement<SelbstbehaltType>(_GenElementarproduktHaushaltTypeSelbstbehalt_QNAME, SelbstbehaltType.class, GenElementarproduktHaushaltType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Unterversicherungsverzicht", scope = GenElementarproduktHaushaltType.class)
|
||||
public JAXBElement<Boolean> createGenElementarproduktHaushaltTypeUnterversicherungsverzicht(Boolean value) {
|
||||
return new JAXBElement<Boolean>(_GenElementarproduktHaushaltTypeUnterversicherungsverzicht_QNAME, Boolean.class, GenElementarproduktHaushaltType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Nebenkosten", scope = GenElementarproduktHaushaltType.class)
|
||||
public JAXBElement<KostenFixOderProzentType> createGenElementarproduktHaushaltTypeNebenkosten(KostenFixOderProzentType value) {
|
||||
return new JAXBElement<KostenFixOderProzentType>(_GenElementarproduktHaushaltTypeNebenkosten_QNAME, KostenFixOderProzentType.class, GenElementarproduktHaushaltType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Vorsorge", scope = GenElementarproduktHaushaltType.class)
|
||||
public JAXBElement<KostenFixOderProzentType> createGenElementarproduktHaushaltTypeVorsorge(KostenFixOderProzentType value) {
|
||||
return new JAXBElement<KostenFixOderProzentType>(_GenElementarproduktHaushaltTypeVorsorge_QNAME, KostenFixOderProzentType.class, GenElementarproduktHaushaltType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Hoechsthaftungssumme", scope = GenElementarproduktHaushaltType.class)
|
||||
public JAXBElement<BigInteger> createGenElementarproduktHaushaltTypeHoechsthaftungssumme(BigInteger value) {
|
||||
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypeHoechsthaftungssumme_QNAME, BigInteger.class, GenElementarproduktHaushaltType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Sparte", scope = GenElementarproduktGebaeudeType.class)
|
||||
public JAXBElement<String> createGenElementarproduktGebaeudeTypeSparte(String value) {
|
||||
return new JAXBElement<String>(_GenElementarproduktHaushaltTypeSparte_QNAME, String.class, GenElementarproduktGebaeudeType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Pauschalbetrag", scope = GenElementarproduktGebaeudeType.class)
|
||||
public JAXBElement<BigInteger> createGenElementarproduktGebaeudeTypePauschalbetrag(BigInteger value) {
|
||||
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypePauschalbetrag_QNAME, BigInteger.class, GenElementarproduktGebaeudeType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Selbstbehalt", scope = GenElementarproduktGebaeudeType.class)
|
||||
public JAXBElement<SelbstbehaltType> createGenElementarproduktGebaeudeTypeSelbstbehalt(SelbstbehaltType value) {
|
||||
return new JAXBElement<SelbstbehaltType>(_GenElementarproduktHaushaltTypeSelbstbehalt_QNAME, SelbstbehaltType.class, GenElementarproduktGebaeudeType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Versicherungssumme", scope = GenElementarproduktGebaeudeType.class)
|
||||
public JAXBElement<BigInteger> createGenElementarproduktGebaeudeTypeVersicherungssumme(BigInteger value) {
|
||||
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypeVersicherungssumme_QNAME, BigInteger.class, GenElementarproduktGebaeudeType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Unterversicherungsverzicht", scope = GenElementarproduktGebaeudeType.class)
|
||||
public JAXBElement<Boolean> createGenElementarproduktGebaeudeTypeUnterversicherungsverzicht(Boolean value) {
|
||||
return new JAXBElement<Boolean>(_GenElementarproduktHaushaltTypeUnterversicherungsverzicht_QNAME, Boolean.class, GenElementarproduktGebaeudeType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProzentVersicherungssumme", scope = GenElementarproduktGebaeudeType.class)
|
||||
public JAXBElement<Long> createGenElementarproduktGebaeudeTypeProzentVersicherungssumme(Long value) {
|
||||
return new JAXBElement<Long>(_GenElementarproduktHaushaltTypeProzentVersicherungssumme_QNAME, Long.class, GenElementarproduktGebaeudeType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Nebenkosten", scope = GenElementarproduktGebaeudeType.class)
|
||||
public JAXBElement<KostenFixOderProzentType> createGenElementarproduktGebaeudeTypeNebenkosten(KostenFixOderProzentType value) {
|
||||
return new JAXBElement<KostenFixOderProzentType>(_GenElementarproduktHaushaltTypeNebenkosten_QNAME, KostenFixOderProzentType.class, GenElementarproduktGebaeudeType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Vorsorge", scope = GenElementarproduktGebaeudeType.class)
|
||||
public JAXBElement<KostenFixOderProzentType> createGenElementarproduktGebaeudeTypeVorsorge(KostenFixOderProzentType value) {
|
||||
return new JAXBElement<KostenFixOderProzentType>(_GenElementarproduktHaushaltTypeVorsorge_QNAME, KostenFixOderProzentType.class, GenElementarproduktGebaeudeType.class, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Hoechsthaftungssumme", scope = GenElementarproduktGebaeudeType.class)
|
||||
public JAXBElement<BigInteger> createGenElementarproduktGebaeudeTypeHoechsthaftungssumme(BigInteger value) {
|
||||
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypeHoechsthaftungssumme_QNAME, BigInteger.class, GenElementarproduktGebaeudeType.class, value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.BezugsberechtigungType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.ElementarproduktGenerischType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
|
||||
@@ -22,8 +22,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="Versicherungssumme" type="{urn:omds20}decimal"/>
|
||||
* <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
|
||||
* <element name="Bezugsberechtigung" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
@@ -34,41 +34,17 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "LeistungsartUnfall_Type", propOrder = {
|
||||
"versicherungssumme",
|
||||
"selbstbehalt"
|
||||
"selbstbehalt",
|
||||
"bezugsberechtigung"
|
||||
})
|
||||
public class LeistungsartUnfallType
|
||||
extends ElementarproduktGenerischType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Versicherungssumme", required = true)
|
||||
protected BigDecimal versicherungssumme;
|
||||
@XmlElement(name = "Selbstbehalt")
|
||||
protected SelbstbehaltType selbstbehalt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getVersicherungssumme() {
|
||||
return versicherungssumme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungssumme-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setVersicherungssumme(BigDecimal value) {
|
||||
this.versicherungssumme = value;
|
||||
}
|
||||
@XmlElement(name = "Bezugsberechtigung")
|
||||
protected BezugsberechtigungType bezugsberechtigung;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
|
||||
@@ -94,4 +70,28 @@ public class LeistungsartUnfallType
|
||||
this.selbstbehalt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der bezugsberechtigung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BezugsberechtigungType }
|
||||
*
|
||||
*/
|
||||
public BezugsberechtigungType getBezugsberechtigung() {
|
||||
return bezugsberechtigung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der bezugsberechtigung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BezugsberechtigungType }
|
||||
*
|
||||
*/
|
||||
public void setBezugsberechtigung(BezugsberechtigungType value) {
|
||||
this.bezugsberechtigung = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -120,14 +120,6 @@ public class ObjectFactory {
|
||||
return new LeistungsartUnfallType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DarstellungPraemieNachLeistungsartType }
|
||||
*
|
||||
*/
|
||||
public DarstellungPraemieNachLeistungsartType createDarstellungPraemieNachLeistungsartType() {
|
||||
return new DarstellungPraemieNachLeistungsartType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SpezBerechnungUnfallType }
|
||||
*
|
||||
|
||||
@@ -8,6 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktGenerischType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertePersonType;
|
||||
|
||||
|
||||
/**
|
||||
@@ -23,7 +24,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktGenerischType;
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="VersichertePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VersichertePersonUnfall_Type" maxOccurs="unbounded"/>
|
||||
* <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}DarstellungPraemieNachLeistungsart_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
@@ -35,7 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktGenerischType;
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VerkaufsproduktUnfall_Type", propOrder = {
|
||||
"versichertePersonen",
|
||||
"leistungsarten"
|
||||
"personen"
|
||||
})
|
||||
public class VerkaufsproduktUnfallType
|
||||
extends VerkaufsproduktGenerischType
|
||||
@@ -43,8 +44,8 @@ public class VerkaufsproduktUnfallType
|
||||
|
||||
@XmlElement(name = "VersichertePersonen", required = true)
|
||||
protected List<VersichertePersonUnfallType> versichertePersonen;
|
||||
@XmlElement(name = "Leistungsarten")
|
||||
protected List<DarstellungPraemieNachLeistungsartType> leistungsarten;
|
||||
@XmlElement(name = "Personen", required = true)
|
||||
protected List<VersichertePersonType> personen;
|
||||
|
||||
/**
|
||||
* Gets the value of the versichertePersonen property.
|
||||
@@ -76,32 +77,32 @@ public class VerkaufsproduktUnfallType
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the leistungsarten property.
|
||||
* Gets the value of the personen 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 leistungsarten property.
|
||||
* This is why there is not a <CODE>set</CODE> method for the personen property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getLeistungsarten().add(newItem);
|
||||
* getPersonen().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DarstellungPraemieNachLeistungsartType }
|
||||
* {@link VersichertePersonType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DarstellungPraemieNachLeistungsartType> getLeistungsarten() {
|
||||
if (leistungsarten == null) {
|
||||
leistungsarten = new ArrayList<DarstellungPraemieNachLeistungsartType>();
|
||||
public List<VersichertePersonType> getPersonen() {
|
||||
if (personen == null) {
|
||||
personen = new ArrayList<VersichertePersonType>();
|
||||
}
|
||||
return this.leistungsarten;
|
||||
return this.personen;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@ import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
|
||||
@@ -24,7 +24,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
|
||||
* <element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||
* <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
|
||||
* <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
@@ -37,7 +37,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VersichertePersonUnfall_Type", propOrder = {
|
||||
"person",
|
||||
"personRefLfnr",
|
||||
"selbstbehalt",
|
||||
"leistungsarten"
|
||||
})
|
||||
@@ -45,35 +45,28 @@ public class VersichertePersonUnfallType
|
||||
extends ProduktGenerischType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Person", required = true)
|
||||
protected PersonType person;
|
||||
@XmlElement(name = "PersonRefLfnr")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected int personRefLfnr;
|
||||
@XmlElement(name = "Selbstbehalt")
|
||||
protected SelbstbehaltType selbstbehalt;
|
||||
@XmlElement(name = "Leistungsarten")
|
||||
protected List<LeistungsartUnfallType> leistungsarten;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der person-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PersonType }
|
||||
* Ruft den Wert der personRefLfnr-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public PersonType getPerson() {
|
||||
return person;
|
||||
public int getPersonRefLfnr() {
|
||||
return personRefLfnr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der person-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PersonType }
|
||||
* Legt den Wert der personRefLfnr-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setPerson(PersonType value) {
|
||||
this.person = value;
|
||||
public void setPersonRefLfnr(int value) {
|
||||
this.personRefLfnr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
|
||||
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected ObjektIdType objektId;
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
|
||||
@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)
|
||||
})
|
||||
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
||||
@XmlElement(name = "WirksamtkeitAb", required = true)
|
||||
@@ -115,8 +115,8 @@ public class ChangeCommunicationObjectRequestType
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||
*
|
||||
*
|
||||
|
||||
@@ -799,25 +799,6 @@
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<!-- <xsd:complexType name="VerkaufsproduktGenerisch_Type" abstract="true">-->
|
||||
<!-- <xsd:annotation>-->
|
||||
<!-- <xsd:documentation>Basistyp für ein Produktbündel, 2. Generation</xsd:documentation>-->
|
||||
<!-- </xsd:annotation>-->
|
||||
<!-- <xsd:complexContent>-->
|
||||
<!-- <xsd:extension base="ProduktbausteinGenerisch_Type">-->
|
||||
<!-- <xsd:sequence>-->
|
||||
<!-- <xsd:element name="Verkaufsproduktgeneration" type="xsd:string" minOccurs="0"/>-->
|
||||
<!-- <xsd:element name="Berechnungsvariante" type="Berechnungsvariante_Type" minOccurs="0">-->
|
||||
<!-- <xsd:annotation>-->
|
||||
<!-- <xsd:documentation>Ermöglicht eine Vorgabe für die Produktkonfiguration durch den Serviceprovider: von "basic = Basiskonfiguration" über "medium" bis "top" = vollumfänglich".</xsd:documentation>-->
|
||||
<!-- </xsd:annotation>-->
|
||||
<!-- </xsd:element>-->
|
||||
<!-- <xsd:element ref="omds:EL-Rahmenvereinbarung" minOccurs="0"/>-->
|
||||
<!-- <xsd:element name="ZusaetzlicheVerkaufproduktdaten" type="ZusaetzlicheVerkaufproduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>-->
|
||||
<!-- </xsd:sequence>-->
|
||||
<!-- </xsd:extension>-->
|
||||
<!-- </xsd:complexContent>-->
|
||||
<!-- </xsd:complexType>-->
|
||||
<xsd:complexType name="VerkaufsproduktGenerisch_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Basistyp für ein Produktbündel, 2. Generation</xsd:documentation>
|
||||
@@ -849,22 +830,6 @@
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<!-- <xsd:complexType name="ProduktGenerisch_Type" abstract="true">-->
|
||||
<!-- <xsd:annotation>-->
|
||||
<!-- <xsd:documentation>Basistyp für ein Produkt, 2. Generation</xsd:documentation>-->
|
||||
<!-- </xsd:annotation>-->
|
||||
<!-- <xsd:complexContent>-->
|
||||
<!-- <xsd:extension base="ProduktbausteinGenerisch_Type">-->
|
||||
<!-- <xsd:sequence>-->
|
||||
<!-- <xsd:element name="Produktgeneration" type="xsd:string"/>-->
|
||||
<!-- <xsd:element name="Zahlweg" type="omds:ZahlWegCd_Type" minOccurs="0"/>-->
|
||||
<!-- <xsd:element name="Zahlrhythmus" type="omds:ZahlRhythmCd_Type" minOccurs="0"/>-->
|
||||
<!-- <xsd:element name="Hauptfaelligkeit" type="Hauptfaelligkeit_Type"/>-->
|
||||
<!-- <xsd:element name="ZusaetzlicheProduktdaten" type="ZusaetzlicheProduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>-->
|
||||
<!-- </xsd:sequence>-->
|
||||
<!-- </xsd:extension>-->
|
||||
<!-- </xsd:complexContent>-->
|
||||
<!-- </xsd:complexType>-->
|
||||
<xsd:complexType name="ProduktGenerisch_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Basistyp für ein Produkt, 2. Generation</xsd:documentation>
|
||||
@@ -896,19 +861,6 @@
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
|
||||
<!-- <xsd:complexType name="ElementarproduktGenerisch_Type" abstract="true">-->
|
||||
<!-- <xsd:annotation>-->
|
||||
<!-- <xsd:documentation>Basistyp für ein Elementarprodukt, 2. Generation</xsd:documentation>-->
|
||||
<!-- </xsd:annotation>-->
|
||||
<!-- <xsd:complexContent>-->
|
||||
<!-- <xsd:extension base="ProduktbausteinGenerisch_Type">-->
|
||||
<!-- <xsd:sequence>-->
|
||||
<!-- <xsd:element name="ZusaetzlicheElementarproduktdaten" type="ZusaetzlicheElementarproduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>-->
|
||||
<!-- </xsd:sequence>-->
|
||||
<!-- </xsd:extension>-->
|
||||
<!-- </xsd:complexContent>-->
|
||||
<!-- </xsd:complexType>-->
|
||||
<xsd:complexType name="ElementarproduktGenerisch_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Basistyp für ein Elementarprodukt, 2. Generation</xsd:documentation>
|
||||
@@ -936,11 +888,11 @@
|
||||
<xsd:documentation>Eine weitereführende Beschreibung des Bausteins für eine Anzeige.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Versicherungssumme" type="omds:decimal14_2" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
|
||||
<xsd:complexType name="BeteiligtePersonVertrag_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind</xsd:documentation>
|
||||
@@ -1163,14 +1115,6 @@
|
||||
<xsd:element ref="omds:PERSON"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Bezugsrecht_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type Bezugsrecht</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="omds:PERSON"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Vinkularglaeubiger_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Typ zur Beschreibung einer Bank als Vinkulargläubiger</xsd:documentation>
|
||||
@@ -1210,6 +1154,62 @@
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Bezugsrecht_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type Bezugsrecht fuer Kfz</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="omds:PERSON"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Bezugsberechtigung_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BezugsberechtigungGesetzlicheErben_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Bezugsberechtigung gesetzliche Erben</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="Bezugsberechtigung_Type">
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BezugsberechtigungUeberbringer_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Bezugsberechtigung Überbringer</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="Bezugsberechtigung_Type">
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BezugsberechtigungNamentlich">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Bezugsberechtigung namentlich</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="Bezugsberechtigung_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ReferenzPerson" type="xsd:unsignedShort"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="BezugsberechtigungIndividuell">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Bezugsberechtigung Individuell</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="Bezugsberechtigung_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Beschreibung" type="xsd:string"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
|
||||
<!-- Bonus Malus-->
|
||||
<xsd:complexType name="BonusMalusSystem_Type">
|
||||
<xsd:annotation>
|
||||
|
||||
@@ -56,6 +56,9 @@
|
||||
</xsd:complexType>
|
||||
<!-- Der Typ Vertragsrechtsschutz_Type ist ein Beispiel für einen normierten Untertyp. In dieser Form können auch VUs eigene Untertypen definieren -->
|
||||
<xsd:simpleType name="OertlicherGeltungsbereichCd_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Code für den örtlichen Geltungsbereichs</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:unsignedByte">
|
||||
<xsd:enumeration value="1">
|
||||
<xsd:annotation>
|
||||
@@ -136,7 +139,7 @@
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CalculateRechtsschutzResponse_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Typ des Responseobjekts für eine Rechtsschutz-Berechnung</xsd:documentation>
|
||||
<xsd:documentation>Typ des Responseobjekt bei der Rechtsschutz-Berechnung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ac:CalculateResponseGen_Type">
|
||||
@@ -160,7 +163,7 @@
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CreateOfferRechtsschutzResponse_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type des Responseobjekts für eine Erstellung eines Rechtsschutz-Offerts</xsd:documentation>
|
||||
<xsd:documentation>Type des Responseobjekts bei der Erstellung eines Rechtsschutz-Offerts</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ac:CreateOfferResponseGen_Type">
|
||||
@@ -184,7 +187,7 @@
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CreateApplicationRechtsschutzResponse_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type des Responseobjekts für die Erstellung eines Rechtsschutzantrags</xsd:documentation>
|
||||
<xsd:documentation>Type des Responseobjekts bei der Erstellung eines Rechtsschutzantrags</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ac:CreateApplicationResponseGen_Type">
|
||||
@@ -208,7 +211,7 @@
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="SubmitApplicationRechtsschutzResponse_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type des Response, um den Antrag einzureichen</xsd:documentation>
|
||||
<xsd:documentation>Type des Response beim Eineichen des Antrags</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ac:SubmitApplicationResponseGen_Type">
|
||||
@@ -218,12 +221,44 @@
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:element name="CalculateRechtsschutzRequest" type="CalculateRechtsschutzRequest_Type"/>
|
||||
<xsd:element name="CalculateRechtsschutzResponse" type="CalculateRechtsschutzResponse_Type"/>
|
||||
<xsd:element name="CreateOfferRechtsschutzRequest" type="CreateOfferRechtsschutzRequest_Type"/>
|
||||
<xsd:element name="CreateOfferRechtsschutzResponse" type="CreateOfferRechtsschutzResponse_Type"/>
|
||||
<xsd:element name="CreateApplicationRechtsschutzRequest" type="CreateApplicationRechtsschutzRequest_Type"/>
|
||||
<xsd:element name="CreateApplicationRechtsschutzResponse" type="CreateApplicationRechtsschutzResponse_Type"/>
|
||||
<xsd:element name="SubmitApplicationRechtsschutzRequest" type="SubmitApplicationRechtsschutzResponse_Type"/>
|
||||
<xsd:element name="SubmitApplicationRechtsschutzResponse" type="SubmitApplicationRechtsschutzResponse_Type"/>
|
||||
<xsd:element name="CalculateRechtsschutzRequest" type="CalculateRechtsschutzRequest_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Requestobjekt für eine Berechnung Rechtsschutz</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="CalculateRechtsschutzResponse" type="CalculateRechtsschutzResponse_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Responseobjekt bei der Rechtsschutz-Berechnung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="CreateOfferRechtsschutzRequest" type="CreateOfferRechtsschutzRequest_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Requestobjekt für eine Erstellung eines Rechstsschutz-Offerts</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="CreateOfferRechtsschutzResponse" type="CreateOfferRechtsschutzResponse_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutz-Offerts</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="CreateApplicationRechtsschutzRequest" type="CreateApplicationRechtsschutzRequest_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Requestobjekt für die Erstellung eines Rechtsschutzantrags</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="CreateApplicationRechtsschutzResponse" type="CreateApplicationRechtsschutzResponse_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutzantrags</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="SubmitApplicationRechtsschutzRequest" type="SubmitApplicationRechtsschutzResponse_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Requests, um den Antrag einzureichen</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="SubmitApplicationRechtsschutzResponse" type="SubmitApplicationRechtsschutzResponse_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Response nach dem einreichen des Antrags</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
|
||||
@@ -414,10 +414,11 @@
|
||||
<xsd:documentation>Einbruchdiebstahl</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="EK"><!-- auf Anforderung Generali, keine OMDS 2 Sparte -->
|
||||
<xsd:enumeration value="EK">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Elektronik</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<!-- auf Anforderung Generali, keine OMDS 2 Sparte -->
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="FE">
|
||||
<xsd:annotation>
|
||||
|
||||
@@ -11,9 +11,9 @@
|
||||
<xsd:extension base="cst:VerkaufsproduktGenerisch_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="VersichertePersonen" type="VersichertePersonUnfall_Type" maxOccurs="unbounded"/>
|
||||
<xsd:element name="Leistungsarten" type="DarstellungPraemieNachLeistungsart_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:element name="Personen" type="cst:VersichertePerson_Type" minOccurs="1" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Element um Prämien Personen-übergreifend nach Leistungsarten darzustellen.</xsd:documentation>
|
||||
<xsd:documentation>Die Personendaten der versicherten Personen, die im Produktbaum referenziert werden.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
@@ -27,9 +27,9 @@
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:ProduktGenerisch_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Person" type="cst:Person_Type">
|
||||
<xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Die Person an sich</xsd:documentation>
|
||||
<xsd:documentation>Referenz auf die Versicherte Person</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Selbstbehalt" type="cst:Selbstbehalt_Type" minOccurs="0">
|
||||
@@ -53,18 +53,12 @@
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:ElementarproduktGenerisch_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Versicherungssumme" type="omds:decimal"/>
|
||||
<xsd:element name="Selbstbehalt" type="cst:Selbstbehalt_Type" minOccurs="0"/>
|
||||
<xsd:element name="Bezugsberechtigung" type="cst:Bezugsberechtigung_Type" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="DarstellungPraemieNachLeistungsart_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="BezeichnungLeistungsart" type="xsd:string"/>
|
||||
<xsd:element name="Praemie" type="cst:Praemie_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<!-- Typen für die Schritte in BOA -->
|
||||
<xsd:complexType name="SpezBerechnungUnfall_Type">
|
||||
<xsd:annotation>
|
||||
|
||||
Reference in New Issue
Block a user